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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Rajsheisan
Frequent Visitor

Subtract percentage value from percentage value

Hi,

I am trying to subtract a measure from another based on a data field value, the subtraction working for numbers but, not percentage values. Can someone tell me what's wrong with the below DAX.

if(Type= "percentage",
IFERROR( FORMAT(CALCULATE([LastYearSameMonth]-[Cur.Month]), "0.00%"), BLANK()),
IFERROR(CALCULATE([LastYearSameMonth]-[Cur.Month]), BLANK()))

below is the data sample

Cur.MonthLastYearSameMonthDiff
98.93%98.59% 
2.9862159891.2795-1.70672

Thanks.
3 REPLIES 3
v-chenwuz-msft
Community Support
Community Support

Hi @Rajsheisan ,

 

I do not know what do these measures [LastYearSameMonth] and [Cur.Month] look like, but can you try to use the function VALUE() to transform text to number.

 

IFERROR( FORMAT(CALCULATE(value([LastYearSameMonth])-value([Cur.Month])), "0.00%"), BLANK())

 

Best Regards

Community Support Team _ chenwu zhu

 

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

 

 

Thanks. I managed get it done.

 

Hi @Rajsheisan ,

 

I'm glad your problem is solved. If my answer was helpful to you, please mark my reply or if you have a better way, please share and mark it as a solution so more people can find the answer quickly.

 

Best Regards

Community Support Team _ chenwu zhu

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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