Forum Discussion
Anonymous
4 years agoNot applicable
Remove the Roll-up value from Highest level
Hi
Can someone please help me with the below question -
Dataset -
I have created a hirerachy -- 1) Column1 2) Column2 3)Column3
I would like to remove the rollup at higest level (Column1)
I dont want the value to roll up at higest level, it should be blank -
Thanks in advance
This sort of situation is where ISINSCOPE can be useful.
If you want it to show only when Column2 or Column3 are in scope, you could write:
Phase = IF ( ISINSCOPE ( Table1[Column3] ) || ISINSCOPE ( Table1[Column2] ), SELECTEDVALUE ( Table1[Phase] ) )
2 Replies
- AlexisOlson
Super User
This sort of situation is where ISINSCOPE can be useful.
If you want it to show only when Column2 or Column3 are in scope, you could write:
Phase = IF ( ISINSCOPE ( Table1[Column3] ) || ISINSCOPE ( Table1[Column2] ), SELECTEDVALUE ( Table1[Phase] ) )- AnonymousNot applicable
thank you AlexisOlson