Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Judicael
Partner - Contributor III
Partner - Contributor III

IF AND STATEMENT

Hello,

I have a field STATE with values : START , IN PROGRESS, ENDPOINT, COMPLETED, N/A

I want to transform the field STATE like START, IN PROGRESS, ENDPOINT, COMPLETED, N/A, MIXTE where MIXTE ={IN PROGRESS AND ENDPOINT}

 

ID, STATE_OLD, STATE_NEW

001, IN PROGRESS, MIXTE

001, ENDPOINT, MIXTE

 

Thanks for your help.

 

Regards.

Labels (1)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

As far i understand the question, You may need this?

If(Match(STATE, 'IN PROGRESS', 'ENDPOINT'), 'MIXTE', STATE) as New_Field

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

1 Reply
Anil_Babu_Samineni

As far i understand the question, You may need this?

If(Match(STATE, 'IN PROGRESS', 'ENDPOINT'), 'MIXTE', STATE) as New_Field

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful