Forum Discussion
LaurensM03
2 years agoNew Member
Filter a table based on measure with multiple OR's
Dear all, I am trying to filter a table based on the measure pasted below. A row from the table 'sheet1' should be shown in the table if: the column 'parent link' contains the string as defined...
Ahmedx
Super User
2 years agobut a measure cannot be a table, did you create a measure?
Ahmedx
Super User
2 years agowrite like this and select 1
Filter missing requirements =
VAR MTMB = "ABN-1095"
VAR Filtermissing =
FILTER('Sheet1',
CONTAINSSTRING('Sheet1'[Parent Link], MTMB) &&
'Sheet1'[CRA Intake Status] = "To Do" ||
'Sheet1'[Eligible for Capitalisation] = "No" ||
ISBLANK('Sheet1'[Eligible for Capitalisation]) ||
'Sheet1'[Solution Intent status] = "Undefined" ||
'Sheet1'[Solution Intent status] = "To Do"
)
RETURN
if ( COUNTROWS(Filtermissing)>1,1,0)