CR XIr2
I have a string field where each character (case-sensitive) equals a type of action. I want to replace the character with the appropriate action type.
I've tried the Replace function, but I'm not sure how to do multiple characters all at once. I tried nesting, but it would replace values in the replaceString
I also tried creating an array formula that would split then case the values using a for loop, but the string has no delimiter. (This was based on an answer given by LBass to split a string)
Here's some sample data:
User Action
Bob "aCduv"
Sam "pvVs"
I'd like it to be:
Bob "add create delete update view"
Sam "process view verify schedule"
Any help would be appreciated!
I have a string field where each character (case-sensitive) equals a type of action. I want to replace the character with the appropriate action type.
I've tried the Replace function, but I'm not sure how to do multiple characters all at once. I tried nesting, but it would replace values in the replaceString
I also tried creating an array formula that would split then case the values using a for loop, but the string has no delimiter. (This was based on an answer given by LBass to split a string)
Here's some sample data:
User Action
Bob "aCduv"
Sam "pvVs"
I'd like it to be:
Bob "add create delete update view"
Sam "process view verify schedule"
Any help would be appreciated!