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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

Reply
ahmedalam
Helper I
Helper I

Power Query Filteration

Dear Experts,

 

I have create one table through DAX and need to show only those data which has more than 0 value in QTY. Can you please guide.

 

InventOnHand =
            SUMMARIZE(
                'InventTransBiEntities',
                'InventTransBiEntities'[ItemId],
                InventTransBiEntities[Serial Number],
               
                "Qty", SUM(InventTransBiEntities[Qty])
                )
1 ACCEPTED SOLUTION
jgeddes
Super User
Super User

Wrap your statement in a FILTER function.

InventOnHand =
            
FILTER(
SUMMARIZE(
'InventTransBiEntities',
'InventTransBiEntities'[ItemId],
'InventTransBiEntities'[Serial Number],          
"Qty", SUM(InventTransBiEntities[Qty])
),
[Qty] > 0
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
SundarRaj
Super User
Super User

Hi @ahmedalam , here's the solution. Thanks

SundarRaj_0-1744119615756.png

 

 

Sundar Rajagopalan
jgeddes
Super User
Super User

Wrap your statement in a FILTER function.

InventOnHand =
            
FILTER(
SUMMARIZE(
'InventTransBiEntities',
'InventTransBiEntities'[ItemId],
'InventTransBiEntities'[Serial Number],          
"Qty", SUM(InventTransBiEntities[Qty])
),
[Qty] > 0
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

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.