Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need an expression to put in a text box or create a variable using that expression to display text based on selected dimension
Data Model
An an Example:
try the attachment
= IF(GetPossibleCount(Team)>0 and GetSelectedCount(Department)=1, 'Click here to drill down to team', 'No Teams for this department / Select 1 department')
Maybe something like this:
if(count(distinct Department) >= 0, 'Click here to drill down to team', 'No Teams for this department')
- Marcus
try the attachment
= IF(GetPossibleCount(Team)>0 and GetSelectedCount(Department)=1, 'Click here to drill down to team', 'No Teams for this department / Select 1 department')