I have a Column in Infoview like below…
Table values:
Col1
wwwwAAA
xxxxAAA
yyyyAAA
zzzzAAA
wwwwBBB
xxxxBBB
yyyyBBB
zzzzBBB
All the values ends with either AAA or BBB and these will be given as prompt. So if user selects AAA in prompt I need to select all Col1 values where it ends with AAA.
Can anyone help me how to create variable for this.
But in prompt AAA will not be directly giving, i have description for AAA and BBB in different LOVs. Say if AAA description wll “All Accounts”. So in variable I am trying to do the below logic.
=[Col1] where ([Col1] inlist(concatenation(substr([Col1];1;4);if(userresponse(“Select Values”)=“All Accounts”;“AAA”;“BBB”))))
Above the code is not correct, I am just trying to explain the requiremnet.