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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
ERing
Helper V
Helper V

Need Help - How to sum revenue with critera

I have a requirement to have a card that displays revenue by date, however the revenue for Account Type = Existing should be summed with other records with the same Account ID according to the earliest Sale Date for records with the same Account ID.

 

Using the sample data below, selecting 10/1 should return $28,000 (highlighted rows). It would return the rows with sale date of 10/1/23, but also the rows where Account Type is Existing AND the Account ID matches records with the same Account ID of the selected Sale Date.

 

I tried doing this in PowerQuery by creating a new date column using my criteria, however I'm using Direct Query which prevented me from using that methoed.

 

Should I try to add a column in the report view? Can I build this logic into a measure?

 

Please help!

 

 

Capture 3.PNG

1 REPLY 1
amitchandak
Super User
Super User

@ERing , Try a measure like

 

Sumx(filter(allselected(Table), Table[Account ID] = max(Table[Account ID])) , [Revenue])

 

 

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Top Solution Authors