In this case, by formatting the lists of zip codes into a lists that can be pasted to the "Link to other table" field, and update to Link with Automation and then summed with Rollup Sum(values).
The steps in brief are as follows,
1. Add a Link to other table field
2. Add a formula field and enter either formula
For space-delimited list
SUBSTITUTE({List}, " ", ", ")
For line break delimited list
SUBSTITUTE({List}, "\n", ", ")
3. Setup Automation to update Link to other table when List is updated.
4. Add Rollup field and Sum(values) expression referring to Link field
Ideally, however, it would like to be able to pre-calculate this in the sync source table.
In this case, by formatting the lists of zip codes into a lists that can be pasted to the "Link to other table" field, and update to Link with Automation and then summed with Rollup Sum(values).
The steps in brief are as follows,
1. Add a Link to other table field
2. Add a formula field and enter either formula
For space-delimited list
SUBSTITUTE({List}, " ", ", ")
For line break delimited list
SUBSTITUTE({List}, "\n", ", ")
3. Setup Automation to update Link to other table when List is updated.
4. Add Rollup field and Sum(values) expression referring to Link field
Ideally, however, it would like to be able to pre-calculate this in the sync source table.
Hi,
would like to add, SUBSTITUTE might cause ERROR when applied to the lookup field value, so you need to use CONCATENATE({List}) instead of {List}.
Hi,
would like to add, SUBSTITUTE might cause ERROR when applied to the lookup field value, so you need to use CONCATENATE({List}) instead of {List}.
Yes, it was! Thanks, It need to convert it to a string with the CONCATENATE function.