on 2023 Nov 10 11:47 AM
The idea was simple.I wanted to match two list and save the matched list into text file. So what i did is i used two combo box and passing some dummy values. I am using button to match these two list with formula:
CONCAT(pageVars.matchedItems,[{'id': appVars.LHSValue, 'title': appVars.RHSValue}])
so after what i did is i used an export button in which in logic i am using download flow function and in input i am passing formula
ENCODE_BASE64(outputs["Function"].result)
but this was giving me following error :
so for that to resolve i used custom js in which i converted pageVars.matchedItems to text type
var result = inputs.input1.toString(); return { result};it worked, But while running i am able to download text file but in that i am not getting pageVars.matchedItems list instead i am getting the following:I am totally confused now and don't know what to do.
Request clarification before answering.
Instead of custom JS, try using `ENCODE_JSON(ENCODE_BASE64(...))` for when you generate the text file, it should do what you intended.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
64 | |
8 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.