0
Error when placing button functionality in the ‘Trigger after update’ of the address field
Hello everyone, I want to place the button functionality into the address field’s “Trigger after update” to skip one step of the click action. However, when I place the code, it throws an error. Could you please help me understand what the issue is? Thank you for your help.
The test cloud mode button code also throws an error. Could this be related to a version issue?
2 replies
-
I like the use of the split() and item() to find the city and state. Very creative.
For the code in the Trigger try the following:
let allADDrecs := (select ADD); S := number(first(allADDrecs[contains(name, State)])); C := number(first(allADDrecs[contains(name, City)]))
The only real change you needed was to put number() around the first()
Content aside
- Status Answered
- 4 days agoLast active
- 2Replies
- 30Views
-
2
Following