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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.