Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Niraj_vora0106
Helper III
Helper III

Exclude values

Hi community,

 

I have a doubt and need your help in creating a logic

 

In the below table I've Status, Plan ID and Plan_name

Status Plan IDPlan_name
11Aircel 1GB Data 15 days
41Aircel 1GB Data 15 days
31Aircel 1GB Data 15 days
81Aircel 1GB Data 15 days
91Aircel 1GB Data 15 days
22Tata 2GB Data 30 days
32Tata 2GB Data 30 days
62Tata 2GB Data 30 days
102Tata 2GB Data 30 days
13Jio 1.5GB 90 days
43Jio 1.5GB 90 days
63Jio 1.5GB 90 days
73

Jio 1.5GB 90 days

 

 

I've 3 plans: Aircel 1GB Data 15 daysTata 2GB Data 30 days and Jio 1.5GB 90 days

and their respective Status and Plan ID's.

 

I want to exclude those Plan_name in which Status = 3 is there and their values,

 

For eg: In Aircel 1GB Data 15 days plan, there is Status = 3, as it includes 3 and other Status values too it should not consider this plan. same for Tata 2GB Data 30 days.

Jio 1.5GB 90 days will be considered as there is no 3 value in Status.

 

Please help.

 

1 REPLY 1
lbendlin
Super User
Super User

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSAWPHzKLk1BwFQ3cnBZfEkkQFQ1OFlMTKYqVYnWglEyLUGBOhxoIINZZEqDECyoNwCEjCCKbC2ADVNfhVmBFUYWhAWAlQFmSVV2a+gqGeKVCJpQFqsOGWNcMra45bNhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Status = _t, #"Plan ID" = _t, Plan_name = _t]),
    #"Grouped Rows" = Table.Group(Source, {"Plan_name"}, {{"Rows", each _, type table [#"Status "=nullable number, Plan ID=nullable number, Plan_name=nullable text]}}),
    #"Filtered Rows" = Table.SelectRows(#"Grouped Rows", each (not List.Contains([Rows][Status],"3")))
in
    #"Filtered Rows"

How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.