I’m breaking my head on this… so i’m asking for your help!
I need to write a variable that changes everytime to an excel file. But it has to be horizontal.
Example i need to write from A1 to B1 to C1 … but with big data…
It keeps bugging me that something simple as this takes me this long. Please relieve me from this burden
HI, what exactly is your ‘big data’? To keep track of the column letter, simply increment it by Chr(Asc(letter) + 1).ToString. Once you reach Z, you will have to make it so that it allows for AA, AB, etc.
Hope that helps.