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
Anonymous
Not applicable

Simple Cost Ratio from GL Data

Hello all, pretty frustrated with what I feel should be a simple task

 

I have a simple set of GL data, as seen below, where my amount is in one column, and my accounts are rows.

 

morrellmunyon_0-1637017140102.png

 

I then do a very simple model where I have a GL Account class lookup table, which assigns the class "revenue" and "cost" to each account.

 

morrellmunyon_1-1637017217341.png

 

I then just want to have a simple cost ratio at the account level, of cost/total revenue. the table should look as such below, but nothing returns at the account level for a margin. even the revenue accounts are wrong, as Revenue Reg should be 60% of total revenue, , and Revenue Spec should be 40%

 

morrellmunyon_2-1637018218748.png

My measures are 

Value = SUM(data_table[Amount])
Total Revenue = CALCULATE([Value],gl_class[Class]="Revenue")
Cost Margin = DIVIDE([Value],[Total Revenue])
 
any help would be greatly appreciated
1 ACCEPTED SOLUTION
v-rongtiep-msft
Community Support
Community Support

Hi @Anonymous ,

Please have  a try.

Create a measure.

Total Revenue = CALCULATE(SUM('Table'[Amount]),ALLEXCEPT(gl_class,gl_class[Class ]))

11.PNG

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-rongtiep-msft
Community Support
Community Support

Hi @Anonymous ,

Please have  a try.

Create a measure.

Total Revenue = CALCULATE(SUM('Table'[Amount]),ALLEXCEPT(gl_class,gl_class[Class ]))

11.PNG

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

wdx223_Daniel
Super User
Super User

Total Revenue = CALCULATE([Value],gl_class[Class]="Revenue",all(gl_class[Account]))

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.

Top Solution Authors