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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Markzolotoy
Impactful Individual
Impactful Individual

Division in Model

I have created a new measure like this:

ArchiveTotal = SUMX(Summaries, Summaries[FreeAmount] + Summaries[UsedAmount])
 
Now I want to calc the percentage of FreeAmount and UsedAmount over ArchiveTotal.
All I am trying is: FreeAmount / ArchiveTotal * 100. But when I specify DIVIDE function for new measure all I get is ArchiveTotal, two two other columns are not even available. What am I doing wrong?
 
Thanks
2 ACCEPTED SOLUTIONS
AlB
Community Champion
Community Champion

@Markzolotoy

Using your existing measure [ArchiveTotal]:

NewMeasure =
VAR usedAmount_ = SUM(Summaries[UsedAmount])
RETURN
DIVIDE(usedAmount_, [ArchiveTotal])

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

v-xinruzhu-msft
Community Support
Community Support

Hi @Markzolotoy ,

Column names alone cannot be displayed in the measure, you need to bring the column names into the formula, you can try the following code:

_ FreeAmount=divide(sum(Summaries[FreeAmount]),[ArchiveTotal])

_ UsedAmount=divide(sum(Summaries[UsedAmount]),[ArchiveTotal])

 

Best Regards!

Yolo Zhu

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

4 REPLIES 4
v-xinruzhu-msft
Community Support
Community Support

Hi @Markzolotoy ,

Column names alone cannot be displayed in the measure, you need to bring the column names into the formula, you can try the following code:

_ FreeAmount=divide(sum(Summaries[FreeAmount]),[ArchiveTotal])

_ UsedAmount=divide(sum(Summaries[UsedAmount]),[ArchiveTotal])

 

Best Regards!

Yolo Zhu

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

AlB
Community Champion
Community Champion

@Markzolotoy

Using your existing measure [ArchiveTotal]:

NewMeasure =
VAR usedAmount_ = SUM(Summaries[UsedAmount])
RETURN
DIVIDE(usedAmount_, [ArchiveTotal])

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Markzolotoy
Impactful Individual
Impactful Individual

@AlB Here is my table:

Markzolotoy_0-1671889224335.png

I want to create a new measure = UsedAmount * 100 / ArchiveTotal

where ArchiveTotal = 

ArchiveTotal = SUMX(Summaries, Summaries[FreeAmount] + Summaries[UsedAmount])
 
When I use DIVIDE function intellisense shows ArchiveTotal, but not other numeric columns.

 

AlB
Community Champion
Community Champion

Hi @Markzolotoy 

What do you mean by "two other columns are not even available"

Can you show the exact code you are using to calculate the percentages? And the result you are getting vs the desired one?

Showing a sample of the table(s) would also help

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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