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! Learn more

Reply
Anonymous
Not applicable

Need to add - or + sign to result

Hello Community,

How can I add – or + sign to below Result 2013 ?

Divide = DIVIDE('Table'[2014],'Table'[2013])/100

Row Data
Product201320142015
A      263,054           269,324                242,002
B      258,953           250,947                245,165
C      312,204           296,797                286,313
D      304,018           277,953                286,522
Power Bi Result Excel Result
ProductResult 2013 Product2013
A1.02% A2%
B0.97% B-3%
C0.95% C-5%
D0.91% D-9%
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

To me, it seems like a calculation issue

formula should be DIVIDE('Table'[2014]-'Table'[2013],'Table'[2013])/100

or

(DIVIDE('Table'[2014],'Table'[2013])/100) -1 .

 

Then go to field formatting and change no of the decimal place.

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

To me, it seems like a calculation issue

formula should be DIVIDE('Table'[2014]-'Table'[2013],'Table'[2013])/100

or

(DIVIDE('Table'[2014],'Table'[2013])/100) -1 .

 

Then go to field formatting and change no of the decimal place.

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi Amit,

Thank you so much it is working perfectly fine...below forumual generate the correct result.

DIVIDE('Table'[2014]-'Table'[2013],'Table'[2013])/100

 

Thanks

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