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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
bhorvati
Frequent Visitor

Help with Column Calculation

I need to create a calculated column "Total Units" that totals the unit sales by Order Number without reference to row context.   I need the total as a calculated column since I will create a new dimension based on the size of the total.   Unit Category = if [Total Units] < 100000 then "Small" else "Big"

 

See example below.  I need a formula so that for each row where it shows order number "1000", that the new Total Units column total is 75,000.

 

This seems like it should be easy, but I have spent all day trying to figure this out.   Sorry, I'm a newbie. 

 

example.PNG

1 ACCEPTED SOLUTION
MattAllington
Community Champion
Community Champion

=calculate(sum(table[units]),filter(table,table[ordernumber]=earlier(table[ordernumber]))

 

be sure to write only 1 calculated colum, not 2. Get the one above working first, then modify it to return "big" or "small". This is better than having 2 columns



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

View solution in original post

2 REPLIES 2
MattAllington
Community Champion
Community Champion

=calculate(sum(table[units]),filter(table,table[ordernumber]=earlier(table[ordernumber]))

 

be sure to write only 1 calculated colum, not 2. Get the one above working first, then modify it to return "big" or "small". This is better than having 2 columns



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Worked perfect Matt.  Thanks so much.   I had not even heard of the EARLIER function until just now.  

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors