March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
How do i seperate the far right column to show the sum per order # instead of the total for both? All of the values in "Column" for Order# 10001 should be 10 and 10002 should be 12.
Solved! Go to Solution.
Try this :
Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")
Thanks
Raj
What about
Column =
CALCULATE (
SUM ( Sheet2[Per Item Revenue] ),
FILTER (
ALL ( Sheet2 ),
Sheet2[Item Version] = "s"
&& Sheet2[Order #] = SELECTEDVALUE ( Sheet2[Order #] )
)
)
Thanks, unfortunately that just returned all blanks.
What about this?
Column = CALCULATE ( SUM ( Sheet2[Per Item Revenue] ), FILTER ( ALL ( Sheet2 ), Sheet2[Item Version] = "s" && EARLIER ( Sheet2[Order #] ) ) )
If that doesn't work, try removing the ALL function:
Column = CALCULATE ( SUM ( Sheet2[Per Item Revenue] ), FILTER ( Sheet2, Sheet2[Item Version] = "s" && EARLIER ( Sheet2[Order #] ) ) )
That's what I had. 😕
Ok, try removing the ALL function. I had an alternate formula in my last post (I added it as an edit), see if that works.
Still getting the total revenue for all "s" revenue instead of it sorting by Order #.
Try this :
Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")
Thanks
Raj
Awesome, thanks!
Got it (I think):
Column = CALCULATE ( SUM ( Sheet2[Per Item Revenue] ), FILTER ( Sheet2, Sheet2[Order #] = EARLIER ( Sheet2[Order #] ) && Sheet2[Item Version] = "S" ) )
Good job @Anonymous , Your logic was right, just syntax needed some correction.
Thanks
Raj
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |