I have a text input that includes a string with spaces between each different ID reference. I want to split out these IDs into separate text label boxes.
I can separate out the first ID using
Left(Input_form_notes.Text,Find(" ",Input_form_notes.Text))
but after that I'm stuck.
The delimiter is 1 space. In total there are up to 10 IDs in the text input.
I can't use LEFT/MID/RIGHT as the character length will not be fixed amounts.
I've tried using split but didn't seem to work for me, but perhaps I'm just too much of a novice with this function to know how to use!
Any suggestions of a formula I can use for splitting out each word at a time to each different text label would be created appreciated.