Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello
I have a table visual with several fields/columns.
I want not to show rows where Field1=SOMETHING1 and Field2=SOMETHING2.
I cannot do that with the visual filters at the right pane. Is there any other solution?
I tried to write a measure but it does not work:
Thanks!
Solved! Go to Solution.
Hi @UsePowerBI ,
Try to create a measure like this and add it to the filter window on the right.
Filter =
IF(
MAX('Table'[field1]) = "something1" && MAX('Table'[field2]) = "something2",
1, 0
)
Or try to a measure like this.
// Add the measure to the table visual
Measure =
CALCULATE(
SUM('Table1'[field]),
FILTER(
ALL('Table1'),
'Table1'[Col2] <> "SOME TEXT" && 'Table1'[Col3] <> "OTHER TEXT"
)
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UsePowerBI ,
Try to create a measure like this and add it to the filter window on the right.
Filter =
IF(
MAX('Table'[field1]) = "something1" && MAX('Table'[field2]) = "something2",
1, 0
)
Or try to a measure like this.
// Add the measure to the table visual
Measure =
CALCULATE(
SUM('Table1'[field]),
FILTER(
ALL('Table1'),
'Table1'[Col2] <> "SOME TEXT" && 'Table1'[Col3] <> "OTHER TEXT"
)
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@UsePowerBI , is there any other measure. if this only measures in visual it should show that. If there are more you should see blank value for this column
User | Count |
---|---|
117 | |
75 | |
61 | |
50 | |
44 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |