Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, i have an issue :
i have this bar chart :
I want to have a dynamic title as follow :
i have a filter [Position].
if no selection/all positions selected, then "all",
if several positions selected, then number of selected/total number,
if one position only, then the position name
if(GetSelectedcount(field)=count({1} distinct field)or getselectedcount(field)=0,'All',getfieldselection(field))
hi may be somethink like this :
if(getselectedcount(Position)=0,'ALL' ,
if(getselectedcount(Position)=1, GetCurrentSelections (),
if(getselectedcount(Position)>1, GetSelectedCount (Position) / (GetAlternativeCount ([Position) +GetSelectedCount (Position))
)))