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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
DustinD
Helper I
Helper I

need help on how to take all rows for an item into account.

i have made a mock up of what my table looks like. so my goal is to take remsales minus onhand for a item and return y or n if we can cover all orders. so for example below 432-10 is in the table 2 times. when test runs which is what im using to show what im looking for. i want it to take all orders for a part not just a row level. the first item in the chart can be coverred but at the bottom we see the item again and we do not have enough to cover both orders so it should return n for that item number. 

 

 

DustinD_1-1698671570172.png

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @DustinD ,

 

try to add a calculated column like:

Test2 = 
VAR _t = FILTER(data, data[Item]=EARLIER(data[Item]))
VAR _r = SUMX( _t, data[Resales])
VAR _o = MAXX( _t, data[On-Hand])
RETURN
IF(_o>=_r, "y", "n")

 

it worked like:

FreemanZ_0-1698673486452.png

 

View solution in original post

4 REPLIES 4
DustinD
Helper I
Helper I

this worked exactly how i wanted. thanks 

FreemanZ
Super User
Super User

hi @DustinD ,

 

try to add a calculated column like:

Test2 = 
VAR _t = FILTER(data, data[Item]=EARLIER(data[Item]))
VAR _r = SUMX( _t, data[Resales])
VAR _o = MAXX( _t, data[On-Hand])
RETURN
IF(_o>=_r, "y", "n")

 

it worked like:

FreemanZ_0-1698673486452.png

 

will evrey row having its own order number effect using this dax? @FreemanZ 

no, it won't. just try and let us know. 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.