Hello,
I need to return only the date from this expression
MAXROW(“DAILY OPERATIONS”, “DATE”, ([SHOP NAME] = [_THISROW].[SHOP NAME]))
and compare it to
TODAY().
Example, a certain event will happen only if The Date Value, from the date column, of the row returned by
MAXROW(“DAILY OPERATIONS”, “DATE”, ([SHOP NAME] = [_THISROW].[SHOP NAME])) is before TODAY().
Thanks
Solved! Go to Solution.
You can try with:
IF(
TODAY() > MAXROW(“DAILY OPERATIONS”, “DATE”, ([SHOP NAME] = [_THISROW].[SHOP NAME])),
TRUE,
FALSE
)
Thank you @Rene_Casana_Amaya.
However this returns an error as the formula attempts to compare a constant to a row number.
User | Count |
---|---|
18 | |
10 | |
8 | |
6 | |
5 |