Extracting List values from SPLIT and placing in a field

I need to break down an address and place the values into address, address 2, city, state, zip code. This is all on 1 form by the way. I was thinking of using split() based off commas, but I do not know how to extract the returned list values and place them into each field. If you can help please do. Thanks.

1 2 301
2 REPLIES 2

Hi @Noah_Beach ,

I would create it with VC and index expression.

Something like this.

3X_9_9_9923b814b912a0aa2a545482f59ffeae42d0ccff.png

Street VC formula

Index(Split([Address], ","), 1)

City VC formula

Index(Split([Address], ","), 2)

I see. Thank you for your help.

Top Labels in this Space