Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
cristian_av
Creator III
Creator III

Conditional Enable based on Actual Dimension (From a Drill Down Group)

Hi

I'm using a dimension that uses thefollowing Drill down group:

     Year

     Month

     Date

What I want is to show an expression only if the actual dimension is not Date.

How can I make the If statement?

Thanks!!

I magine there must be something like this:

=If(GetActualDimension<>'Date',1,0)

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

GetCurrentField(groupname) <> 'Date'

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

GetCurrentField(groupname) <> 'Date'

-Rob

cristian_av
Creator III
Creator III
Author

Thanks!