Question on SELECT expression: I have a task...

Question on SELECT expression:

I have a task list where the user inputs a task name and upon save, I’d like the system to update the task’s “action_type” field to the action_type of the most recent task with the same name. For example: If I input “buy ice cream”, the system pulls the action type of the most recent “buy ice cream” task.

Based on some reading here, I pulled together this expression:

ANY(SELECT(tasks_user_slice_ALL[name],[_RowNumber]=MAX(

SELECT(tasks_user_slice_ALL[_RowNumber],[name]=[_THISROW].[name]))))

Since ANY is considered a list expression, how do I go about grabbing the single task_action_type text I’m needing from the list to insert it into the field?

Any help would be great. Thanks

0 1 332
1 REPLY 1
Top Labels in this Space