I am trying to stop this measure from being affected by visual filters:
DIVIDE(
CALCULATE(
COUNTROWS('Table1'),
FILTER('Table1', 'Table1'[column1]="High")),
COUNTROWS('Table1'))
I have tried adding the ALL function after the COUNTROWS and FILTER function but this did not work.
Any ideas?