You need to sign in to do that
Don't have an account?
Vijay Patil 1
Handle Apostrophe in picklist value formula?
Can anybody knows how should I handle single quote (apestrope) in below code?
OR(ISPICKVAL(Status,'In Progress- Engineering'),ISPICKVAL(Status,'In Progress- PLM's'))
OR(ISPICKVAL(Status,'In Progress- Engineering'),ISPICKVAL(Status,'In Progress- PLM's'))
check the below code..
OR(ISPICKVAL(Status,"In Progress- Engineering"),ISPICKVAL(Status,"In Progress- PLM's"))
Thank you,
Anil
OR(TEXT(Status)= "In Progress- Engineering",TEXT(Status)= "In Progress- PLM's")
Thank you,
Anil
Incorrect parameter type for function 'ISPICKVAL()'. Expected Picklist, received Text
The above formula is in my workflow formula criteria.