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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
awitt
Helper III
Helper III

Sort filtered column by another column value.

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.

 

image.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

 

Try this :

 

Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")

Thanks
Raj

View solution in original post

10 REPLIES 10
Anonymous
Not applicable

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.

image.png

Anonymous
Not applicable

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. 😕

 

image.png

Anonymous
Not applicable

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 #. 

Anonymous
Not applicable

 

Try this :

 

Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")

Thanks
Raj

Awesome, thanks!

Anonymous
Not applicable

Got it (I think):

Column =
CALCULATE (
    SUM ( Sheet2[Per Item Revenue] ),
    FILTER (
        Sheet2,
        Sheet2[Order #] = EARLIER ( Sheet2[Order #] )
            && Sheet2[Item Version] = "S"
    )
)
Anonymous
Not applicable

Good job @Anonymous , Your logic was right, just syntax needed some correction.

 

Thanks

Raj

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.