I have a field in my FileMaker Pro database that contains semi-colon delimited data in it so what I want to do is separate that data into a new table. if someone could point me in the right direction that would be helpful
I have a field in my FileMaker Pro database that contains semi-colon delimited data
Share
One way would be to write a script that splits the text into lines (using
GetValue()), then splits each line by semicolon (Substitute( $line, ";", "¶" ), thenGetValue()from the resulting list), and finally posts the data into the other table (Go to Layout, New Record, Set Field). Can sketch the whole script, if you want.I’d write it like that: