excelR
excelR copied to clipboard
how to change style for a column or some area?
I can see we can change style for several cells by
style = list(A1='background-color:orange; color:green;',
B1='background-color:orange; color:green;')
excelTable(data=data, columns = columns, style = style)
I have a question if we can edit it for some area ,or a column like
style = list(A1:B9='background-color:orange; color:green;',
C='background-color:orange; color:green;')
excelTable(data=data, columns = columns, style = style)
I suppose it will be more convenient if we can like that😁😁