Hi All,
I am seeking assistance in string search, I found a post on here that used 'Getword' but I couldn't make it work. My requirement:
I want to search the column 'Include entries' for the value that is in the 'User ID' field, when it finds a matching string, I would like to add a column then simply says "INC" so I can carry this particular record forward in the workflow.
| User ID | Include entries |
| ims | abc321,BBB321 |
| ims | abc321,BBB321 |
| ims | ims,abc321,BBB321 |
| ims | ims,abc321,BBB321 |
I did try the following formula but it only seemed to work if I have an actual matching value, as soon as I expanded the string to include more than one entry in the Include entries field, I got empty responses.
IF Getword([Include entries],0) = [User ID] THEN "INC" ELSEIF
GetWord([Include entries], CountWords([Include entries])-1) = [User ID] THEN "INC"
ELSE "" endif
Can anyone offer a solution, I would like to try and avoid breaking the 'Include entries' down in to separate columns as there can be up to 100 records entered!