Im writing an app that transfers "UserID" , "Amount" and selected item on Listpicker. The two former items are collected from a Notifier that asks the user for them:
Looking at the Responseform in real time I see that clicking 'ok' on the first notifier, theres an entry on both column 2 and 3. Same with the second notifier. Double entry. I want one after the other, i.e UserID, Amount, ListView selection on column 2,3,4 respectively. Btw, no issue with Column 4.
If I could get the Notifier to ask the two inputs at a time, I reckon it would solve the issue. So I tried using AltNotifier extension but that only seems to assist preventing "cancel" as an entry. Also forces a numerical value for amount. Helpful but doesnt help with this issue.
-Also tried using the customnotifier.aia but this only modifies the number of notifier buttons, not user-typed entries. (Notifier: is it possible to expand the maximum of two buttons/options to choose from? - #4 by TIMAI2)
-Tried creating a local variable that handles 'list from csv.' i.e. splicing the entries into index 2 and 3 respectively. I got the "cannot parse the text argument from csv..." error.
Please help this rookie. I have feeling its right under my nose (I am overthinking)
will return the same response for Notifier 1 twice. You need a second notifier, and capture the response to a variable for userID, then use that in your your second notifier response.
Dear TIMA12,
Works exactly as it should. You are an angel. Thank You for teaching me this daisy chain technique. I understand now why there was double entry. Putting both Notifiers in the AfterTextInput block fired off the response twice. But by nesting notifier1 into a variable, along with Notifier2 into the AfterTextInput block sends both inputs once.