I added a formula to your example doc that I think will work. I’d test to make sure though.
Tracking.Split(",").FormulaMap(
UPS::Track(CurrentValue).LastActivitySummary
)
I also added a comma to split your two tracking numbers. This formula splits the numbers into a list so each one can be evaluated individually. Then we put them through a FormulaMap()
so we can process each one the same way. CurrentValue
refers to the number in the list being processed.