Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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()
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
71 | |
54 | |
40 | |
35 |
User | Count |
---|---|
68 | |
66 | |
60 | |
50 | |
47 |