The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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()
)
User | Count |
---|---|
82 | |
81 | |
37 | |
34 | |
32 |
User | Count |
---|---|
96 | |
79 | |
61 | |
51 | |
51 |