Hoping someone can help
I have a ticketing App and a [Activity] column in which each activity has its own owner (this is where the Show If kicks in).
After Owner no. 1 updates the ticket, It will go to the responsibility of owner no. 2 but the _THISROW_BEFORE & _THISROW_AFTER seem to be not working.
Are there any work around?
Codes:
IF(
AND(
OR(
([_THISROW_BEFORE].[Activity]=“Activity1”),
([_THISROW_BEFORE].[Activity]=“Activity2”),
([_THISROW_BEFORE].[Activity]=“Activity3”)
),
([Activity]=“Activity4”)
)
,NOW(),[_THISROW_BEFORE].[Activity4 Date]
)
