Is there a way to set a condition on measure level?
e.x:
<Dimension name="All Locations">
<Hierarchy hasAll="true" allMemberName="Locations" primaryKey="ID">
<Table name="report1"/>
<Level name="location1" column="location1" uniqueMembers="true"/>
<Level name="location2" column="location2" uniqueMembers="true"/>
<Level name="location3" column="location3" uniqueMembers="true"/>
</Hierarchy>
</Dimension>
I want to hide level of "location3" if the value is null.
How can i do that?
Thanks in Advance