I have A1 and B1 which are two different dates (for illustration: A1 is today's date, and the other in the following day). I have data value in Cell C that is changed daily by another cell linking formula from other sheet.
Then I have cell A2 and B2 -- the formula in these cells is: =IF(today()=ColumnA1,CellC) and =IF(today()=ColumnB1,CellC) respectively i.e. the formula looks at the date in the A1, for cell A2 and date in B1 for cell B2; and takes the value from CellC if it matches todays date. In cell B2, it will look at the value in CellC for the following day. The formula works ok, except the data in A2 becomes empty the following day (Value in B2 works as intended).
How do I retain the value in cell A2 from being changed/emptied after the date is no longer today i.e. the following days? I can see that the cell history has the previous day's data.
Is there a formula like this:
=IF(today()=ColumnA1,CellC,Use_Cell_History_Last_Value) ?