Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All
Below expression working fine , which filter 3 number from GL Table base on Document No. field :-
_delete =
SWITCH(
TRUE(),
'GL'[Document No.] IN {30017530,30017534,30017532}, "_delete",
BLANK()
)
May i know how to modify the above to ex-clude these 3 number ? I have try :-
_delete_py =
SWITCH(
TRUE(),
'GL'[Document No.] NOT IN {30017530,30017534,30017532}, "_delete",
BLANK()
)
Solved! Go to Solution.
@admin11 , Try like
_delete_py =
SWITCH(
TRUE(),
NOT ('GL'[Document No.] IN {30017530,30017534,30017532}), "_delete",
BLANK()
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
37 | |
31 | |
26 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |