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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply

Add a fix number to sum formula in PBI

Hi Team, 

 

I am trying to add a number to a measure in PBI

 

Measure : 

 

Approved Total_Formatted = FORMAT (
    SUM ( 'Tracker'[XXX])
        + SUM ( 'Tracker'[YYY]),
    "$#,##0;($#,##0)"
)
This is the formula, now I need to add fix amount of "$7,500" to the above result. How can I do that?
2 ACCEPTED SOLUTIONS
Idrissshatila
Super User
Super User

Hello @mohiniverma2704 ,

 

try the following

Approved Total_Formatted = FORMAT (
   (SUM ( 'Tracker'[XXX])
        + SUM ( 'Tracker'[YYY]))+ 7500,
    "$#,##0;($#,##0)"
)

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Follow me on Linkedin
Vote for my Community Mobile App Idea 💡



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




View solution in original post

Ritaf1983
Super User
Super User

Hi @mohiniverma2704 
If i understood you correctly you can use :

Approved Total_Formatted = FORMAT (
    SUM ( 'Tracker'[XXX])
        + SUM ( 'Tracker'[YYY]),
    "$#,##0;($#,##0)"
) & unichar(10)& "$7,500"
if not please show de desired result
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

2 REPLIES 2
Ritaf1983
Super User
Super User

Hi @mohiniverma2704 
If i understood you correctly you can use :

Approved Total_Formatted = FORMAT (
    SUM ( 'Tracker'[XXX])
        + SUM ( 'Tracker'[YYY]),
    "$#,##0;($#,##0)"
) & unichar(10)& "$7,500"
if not please show de desired result
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
Idrissshatila
Super User
Super User

Hello @mohiniverma2704 ,

 

try the following

Approved Total_Formatted = FORMAT (
   (SUM ( 'Tracker'[XXX])
        + SUM ( 'Tracker'[YYY]))+ 7500,
    "$#,##0;($#,##0)"
)

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Follow me on Linkedin
Vote for my Community Mobile App Idea 💡



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors