Hello thesolarguys,
I checked the Plot Addresses and I found that the Return Distances function isn't working. I'm going to put in a ticket for development to fix. I don't have an ETA on when it will be done.
I can give you what I was thinking in doing actions. Take a look at my screenshot. Each number in the following list corresponds to the actions in the screenshot.
1. Start Loop Through Grid - Go through your grid and only process checked rows. I'll refer to a checked row's record address and the grid record's address.
2. Create an action result (mine is FullAddressInGrid) to store the address you are working with in the grid. I populated it with BillAddressAddr1 to start.
3. Combine address fields to create an action result that holds the address for the grid record. Here I am adding BillAddressAddr2 to the action result. Join with commas. You can add more actions to add more of the address fields together. You will need the city and state which is not shown in my example.
4. Once you have your grid record address, you must combine it with the address you are comparing. Join it with a line break. You will need to store this value in an action result.
5. You need a Plot Addresses action. Here, you take the action result and check off Return Distances and create an action result to store the distance number.
6. Put the distance into a custom field on the table. This custom field will be the one you see on your grid that shows the distance. This would be done with an Update Field In Table action. You would find the record by getting the RecordID for the record you are processing in the loop. I don't have a field to use so I don't have an example of this action.
7. End loop
Here is a sample of my join address values action for step 3.
Here is my sample for Step 4 where I combine both addresses
I hope this helps,
Greg