_THISROW_BEFORE & _THISROW_AFTER SHow If Constraint

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]
)

Solved Solved
0 4 141
1 ACCEPTED SOLUTION

Yes. 

There is a type for this ๐Ÿ™‚

Column data types - AppSheet Help

Aurelien_0-1669615896679.png

And you can set the focus on a specific columns if needed.

View solution in original post

4 REPLIES 4

Aurelien
Google Developer Expert
Google Developer Expert

Hi @tejaderts 


@tejaderts wrote:

but the _THISROW_BEFORE & _THISROW_AFTER seem to be not working.


This works for bot components, not for editing unfortunately.

You may prefer using another column to store previous values, that will be updated through grouped actions.

Actions: The Essentials - AppSheet Help

 

Thanks for the fast Revert.
other than the action button, do you have any other suggestion on how can I do timestamping for each Change in [Activity](each activity, has its own column for the time-stamping)?

Yes. 

There is a type for this ๐Ÿ™‚

Column data types - AppSheet Help

Aurelien_0-1669615896679.png

And you can set the focus on a specific columns if needed.

thank you so much

Top Labels in this Space