Hi all,
Any ideas on how to check for spaces in a text string?
Currently, I have split text by length into a line text. It removed all of my spaces after I've split my text value.
Any ideas will be much appreciated.
Thanks,
Rachel
You could try using a decision stage to check the entire string before splitting it and searching for an InStr([Your String], "" "") > 0 and the true or false value returned indicates found space or not.