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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Avivek
Post Partisan
Post Partisan

Need to modify the measure to not show infinity value

I had created a measure which was 

ASP 2 = [Sales Amount]/SUM(Sales[Item Qty])
But in this case if item qty(units) is 0 then value shows as Infinity or NaN. So i modified my measure as 
ASP = IF(SUM(Sales[Item Qty])=0,0,Sales[Sales Amount]/SUM(Sales[Item Qty]))
But there is a small issue with this solution,
Avivek_1-1618987613472.png

So whenever the item qty is 0 or no value is value then ASP appears as 0. But the user does not want to see those systems which has no values at all.

If we put a visual filter not to show ASP as 0 then all the records where maybe other values such as sales, units are there for the system but asp is 0 then those records are also not shown.

Is there any other way to get this result.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @Avivek 

Please try the below.

 

newmeasure =
DIVIDE ( [Sales Amount], SUM ( Sales[Item Qty] ), blank())

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi, @Avivek 

Please try the below.

 

newmeasure =
DIVIDE ( [Sales Amount], SUM ( Sales[Item Qty] ), blank())

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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