Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have this problem, i need to concat a getfieldselection in this set analisys, someone can help me? in this way it show me all month, and not all i selected only:
=if(GetSelectedCount(MESEIN,'','$')>0, '('&Concat(Distinct MESEIN,'|')&')', '('&Concat(Distinct MESEOUT,'|')&')' )
But why do you want to add GetFieldSelections within Concat? I think I am not sure why you want to do that? What exactly are you trying to do?
Sunny with your expression is right all ok... only i ask why you use there in that position the '$', and you replied me.
i want to use GetFieldSelection, becouse i want to select the MESEIN i had choose in my listbox
Are you saying that you want to use GetFieldSelection instead of Concat?
no GetFieldSelection(MESEIN,'','$') need to be the selection of my MESEIN i choose in my listbox in my default state.
But i see it can be right NOT using GetFieldSelection(MESEIN,'','$') but using only '{$}' before Distinct MESEIN
Not sure I understand... but once you have made a selection in MESEIN.... the below should be true....
GetFieldSelection(MESEIN,'','$') = Concat({$} Distinct MESEIN,'')
yes, this is right