I am trying to figure out how to create a year to date and month to date formula within excel. Sounds easy but I have two worksheets one for Data Processing and one for a final report.
I change the data on the first worksheet daily and I need to figure out how to get the info to save for each cumulative day. Essentially it's a summation that needs to save prior data...HELP...
I'm sure this is possible, but I haven't been able to figure out the formula as of yet. If anyone has any ideas I'd be quite thankful.
I'm not sure about everyone else. but im not sure exactly what you want the formula to do yet. When you say "a year to date and month to date" what does this mean? Could you give an example with some numbers?
well I am not sure what you are trying to do but I will take a crack at it anyway.
You could write a small macro to put the date in front of each record from the date in question. Using he Now() function then copy -paste special- values to eliminate the formula when done.
You could also use the now function to create the date and make
You would have to automate the range where date is to be located but you could use this.
Sub dat()
datevar = Month(Now()) & "/" & Day(Now()) & "/" & Year(Now())
Range(Cells(1, 1), Cells(10, 1)) = datevar
End Sub
I'm trying to put in data for one day...and have the data saved to a Year to date formula. The data will be updated each day, so i need to figure out a way to get the daily data to save and add into the YTD cell.