Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
How do I know that it has selected a row in a List object SIMPLE?
And how to retrieve the value of the selected row?
Thanks
If I understood correctly, try somthing like the following:
if(Count(distinct List_Object_Field_Expression)=1,only(List_Object_Field_Expression))
Regards.
If i understood....these functions can help you!!!
getselectedcount ( Your Dimension or List )
getfieldselections ( Your Dimension or List )
look in your help how it works!!!
I have done this, but i have not the result.
= IF ( getSelectedCount('Identifiant de l''entreprise')=1, getFieldSelections('Identifiant de l''entreprise'))
You must need put your dimension ....
'Identifiant de l''entreprise' is your dimension?
you can not use ' ' and if have space use [ ]
Something like
GETSELECTEDCOUNT( [Identifiant de l''entreprise] )
I still not getting the right result
Are those two single quotes or one double quote. A double quote " is equivalent to [] so you shouldn't have a " in dimension name.
Regards.