I'm pulling data from a webpage into a worksheet, from that worksheet I'm displaying some data from specific cells and also using the data in a formula. I want to add the refreshed cell data to a column and keep every refreshed piece of data.
I can't seem to find anything anywhere. I know how I could do it in Python, but my company wont allow me to install an outside program into the Network so I'm having to rely on Excel alone.
If it was in python I would have a counter to note the amount of refreshes and have each cell auto populated like column ="A" counter = 0 for refresh in data: counter += 1 newcell = column + counter
The code is just an example. I would have to work at it, its for a general idea, but I want cell A2 to be filled in on the first refresh. Then A3, then A4 etc etc so that a whole column can be filled. So that if the refresh is set for every 20 minutes, I can have 9 data samples in 3 hours and so on.