Forum Discussion
How to disable 'Visual Level Filter' ?
- 9 years ago
Hi Günter,
If I understand you correctly, you can make use of ALL Function (DAX) which returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied to create new measures for the values you want to show statically.
For example, if you want to show the budget statically on the table, you can just use the formula below to create a new measure, then show the measure on the table.:smileyhappy:
Budget_Measure = CALCULATE ( SUM ( 'YourTableName'[Budget] ), ALL ( 'YourTableName' ) )
Regards
Hi Günter,
If I understand you correctly, you can make use of ALL Function (DAX) which returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied to create new measures for the values you want to show statically.
For example, if you want to show the budget statically on the table, you can just use the formula below to create a new measure, then show the measure on the table.:smileyhappy:
Budget_Measure = CALCULATE ( SUM ( 'YourTableName'[Budget] ), ALL ( 'YourTableName' ) )
Regards