Set status to Cancelled using action

Hi Experts,

  I have a status column type ENUM..column has different status like open, pending, Cancelled.

 I want to create a action which set status vale Cancelled

but when I write formula [Status]="Cancelled", following error is coming.

New value for column Status (Enum)
[Status]="Cancelled"
 
The expression is valid but its result type 'Yes/No' is not one of the expected types: Enum
 
 
please help to solve the error.
Solved Solved
0 2 117
1 ACCEPTED SOLUTION

[Status]="Cancelled"  <- this expression is a YES/NO expression

"Cancelled" <- this is a single text value.

You want to assign a single value to a field of type ENUM of text.

View solution in original post

2 REPLIES 2

[Status]="Cancelled"  <- this expression is a YES/NO expression

"Cancelled" <- this is a single text value.

You want to assign a single value to a field of type ENUM of text.

Aurelien
Google Developer Expert
Google Developer Expert

Hi @urvashigarg 

You need to change this:

Aurelien_0-1701675535477.png

Then add expected values for your status:

Aurelien_1-1701675587605.png

Top Labels in this Space