6
I have a spreadsheet that contains:
COLUNA A1 CABECALHO (PRODUTOS)
COLUNAS B1 A BK1 COM DATAS
I will read a database ordered by product and date and have which automatically fill in the spreadsheet by setting the values of each product on its respective dates.
PRODUTOS 01/10/2016 02/10/2016 03/10/2016 ....... 30/10/2016
PRODUTO1 R$ 1,00 R$ 2,00
PRODUTO2 R$ 5,00 R$ 10,00
How to locate column and position cursor in it? I forgot to inform, but I am using VBA inside Excel as development tool.
The bid, is that I will create the spreadsheet through a selection of start date and end date, so the user can select from any day/month/year. So far all right, the problem is how to position on the right dates.
– joserio