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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Need to show the rounded value in datatype of decimal based on a condition.

From the image here in the matrix I have customer names in the hierarchy contains the customer key. so my question is I have to show only Alexandria Rogers sales amount as 159 and remaining customers sales amount in decimal values as 159.00 so for that I have wrote one calculated column it is working fine in data view but when I consume that in Report It is not showing as expected. And I am new to powerbi.2022-06-08 (2).png Need help on this. 

 

 

                         Thanks in advance.

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

Please update your code as below:-

roundedVal =
IF (
    'internetsales'[customerke] = 12162,
    FORMAT ( 'internetsales'[salesamount], "#0" ),
    FORMAT ( 'internetsales)'[salesamount], "#0.00" )
)

BR,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

2 REPLIES 2
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

Please update your code as below:-

roundedVal =
IF (
    'internetsales'[customerke] = 12162,
    FORMAT ( 'internetsales'[salesamount], "#0" ),
    FORMAT ( 'internetsales)'[salesamount], "#0.00" )
)

BR,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Anonymous
Not applicable

Thank you for your reply.Like the same way I have solved.

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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