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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.

Top Solution Authors