How to map comma seperated variables as individual variables under the iterator module

I have an airtable record that has multiple lat-long numbers separated by a comma. When I try to feed them to the google maps module through an iterator, it does not see each lat-long as it’s own separate variable. i.e. if the values are 23.794753,23.849907983851658
it sees this as one string. However, I would like to map both values as a separate variable.

my current scenario: https://eu1.make.com/88291/scenarios/790412/

1 Like

Hi @Kazi_Shamun_Hassan

you might try to use something like this:

first(split( 23.794753,23.849907983851658 ; , ) )
last(split(23.794753,23.849907983851658;,))

Please make sure they are initiated as functions last(), first(), split() and not as text :smiley:

1 Like