I am trying to compare two lists, these are in text format and delimited with a comma, appsheet only seems to be counting one as a list and the other as a full string.
Simple example below:
Required Training (Column)
Abrasive Wheels, Confined Spaces
Completed Training (Column)
Confined Spaces, Abrasive Wheels, Agricultural Tractor
When the above match there are no issues (even if they are in the wrong order), however as soon as you add another value into the mix (Agricultural Tractor) the comparison returns a False value.
Basically one person can complete more training courses than is mandatory, I want to check the Completed Training Column against the Mandatory Requirements column, if the Completed Training Column contains all the values present in the Mandatory Requirements column then it should return True.
Yes, i have tried it both ways and doesn’t seem to work, however I have found a work around.
I added a virtual column with the following formula:
[Mandatory Requirements] - [Completed Training]
This leaves me with any data not contained in the [Completed Training] column, that meaning if there were any [Mandatory Requirements] left over that were not covered in [Completed Training] then I could use ISNOTBLANK to return either True of False.
Thanks for the help anyway, seems to have worked but need to do more testing!