Hi Cheryl, assuming the formatting’s always the same, you could try this:
MID(
{Field Name},
FIND('@', {Field Name}),
FIND(',', {Field Name},
FIND(',', {Field Name},
FIND('@', {Field Name})
) + 1
)
-
FIND('@', {Field Name})
)
Hi Cheryl, assuming the formatting’s always the same, you could try this:
MID(
{Field Name},
FIND('@', {Field Name}),
FIND(',', {Field Name},
FIND(',', {Field Name},
FIND('@', {Field Name})
) + 1
)
-
FIND('@', {Field Name})
)
Hey Adam-thank you so much for answering this. I’m not sure what field names I am supposed to be inserting though… all I have is a list of google addresses I need the break the longitude and latitude out of each one. Help?
Hey Adam-thank you so much for answering this. I’m not sure what field names I am supposed to be inserting though… all I have is a list of google addresses I need the break the longitude and latitude out of each one. Help?
Its all the same field. Whatever you named the field that has the URL, enter that wherever Adam said “Field Name”
Its all the same field. Whatever you named the field that has the URL, enter that wherever Adam said “Field Name”
OMG ya’ll are amazing!!! thank you so much!!! it worked!!!
Now I have a field that has (example longitude and latitude) @51.1529157,-0.4393229
I have fields set up for the examples above. how do I choose the “@ through comma” and pull that to the latitude field and everything past the comma to the longitude field so i can have it populate my map. Let me know if this is not clear. so the fields would now hold "@51.1529157, and -0.4393229 then I know how to run a substitution to take out my @ and comma
Now I have a field that has (example longitude and latitude) @51.1529157,-0.4393229
I have fields set up for the examples above. how do I choose the “@ through comma” and pull that to the latitude field and everything past the comma to the longitude field so i can have it populate my map. Let me know if this is not clear. so the fields would now hold "@51.1529157, and -0.4393229 then I know how to run a substitution to take out my @ and comma
Rather than doing that, forget the other formulas and just use REGEX to get the Latitude and Longitude directly.
REGEX_REPLACE({Field Name}, "(.*)@(*^,]*),(*^,]*)(.*)", "$2")
and
REGEX_REPLACE({Field Name}, "(.*)@(*^,]*),(*^,]*)(.*)", "$3")
respectively.
Rather than doing that, forget the other formulas and just use REGEX to get the Latitude and Longitude directly.
REGEX_REPLACE({Field Name}, "(.*)@([^,]*),([^,]*)(.*)", "$2")
and
REGEX_REPLACE({Field Name}, "(.*)@([^,]*),([^,]*)(.*)", "$3")
respectively.
You are soooo Awesome! thank you so much this really worked…
You are soooo Awesome! thank you so much this really worked…
Great! Can you mark the actual formula as the solution? It makes it easier in the future for people to search for the answer to similar questions.
Great! Can you mark the actual formula as the solution? It makes it easier in the future for people to search for the answer to similar questions.
ohhhh was thinking I did…. yes i changed it to the formula!! thank you again!