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
hstgeorge
Helper III
Helper III

Help Needed for Calculation

I have a data set that is set up so that one column contains one of the following:  Gallons, Revenue, Fees, Discount and another column next to it that contains the value.  

 

I would like to divide all of them by gallons except gallons.  I don't want to unpivot my data and am looking for a way to do this either by calculated column or measure.

 

So I want to take total revenue and divide by total gallons and total fees and divid by total gallons, on an on:

 

TypeAmount
GALLONS50
REVENUE200
FEES25
DISCOUNT0.25
GALLONS50
REVENUE200
FEES25
DISCOUNT0.25
1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

Hi @hstgeorge 

Here's a sample PBIX with data and DAX Code

Try this measure

 

Ratio = DIVIDE( SUM('Table'[Amount]), CALCULATE( SUM('Table'[Amount]), FILTER(ALL('Table'), 'Table'[Type] = "GALLONS")))

 

You should get this

ratio.png

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

4 REPLIES 4
PhilipTreacy
Super User
Super User

Hi @hstgeorge 

Here's a sample PBIX with data and DAX Code

Try this measure

 

Ratio = DIVIDE( SUM('Table'[Amount]), CALCULATE( SUM('Table'[Amount]), FILTER(ALL('Table'), 'Table'[Type] = "GALLONS")))

 

You should get this

ratio.png

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Anonymous
Not applicable

Hello @hstgeorge 
Can you please share the expected output as the description is not very clear?

amitchandak
Super User
Super User

@hstgeorge , Create a measure like

divide(calculate(sum(Table[Amount]), filter(Table, Table[Type] ="GALLONS")),calculate(sum(Table[Amount]), filter(Table, Table[Type] <>"GALLONS")))

When I type that calc and then use line items in the row to show revenue and then put in the measure so it should divide revenue by gallons, it shows zero or blank but has a value in the total.  Any other suggestions

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.