Hey I'm trying to do this in a Sheet Summary:
- If [Date] is today, then show me the value in the same row in column G.
This works for an individual row (1)
=IF([Date]1 = TODAY(), [G]1, 0)
But I can't get it to work with @row to search all the way down the sheet to look for the current date, I've tried these:
=IF([Date]@row = TODAY(), [G]@row, 0) (unparseable)
=IF([Date]@cell = TODAY(), [G]@cell, 0) (unparseable)
=IF([Date]:[Date] = TODAY(), [G]:[G], 0) (invalid operation)
Also I saw some posts that TODAY doesn't work unless you open/edit the sheet. Is this correct and is it true when used in the Summary fields?