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
joshua1990
Post Prodigy
Post Prodigy

IF ISBLANK Optimization

Hello everyone!

I'm wondering if my current solution is really the best solution. Maybe someone else can provide some feedback on that measure.

I have a simple transaction table with the following 3 columns. The 4th column is the result of the dax measure.

OrderValueQuantityRatio
100100502
101100  
102 50 

 

The objective of the Dax Measure "Ratio" is to calculate the ratio between Value and Quantity. But, if a column contains no value, than the result should be BLANK. This is my current solution:

 

Ratio =
VAR _Quantity =
    SUM ( Sales[Quantity] )
VAR _Value =
    SUM ( Sales[Value] )
VAR _Ratio =
    DIVIDE (
        _Quantity,
        _Value
    )
RETURN
    IF (
        OR (
            ISBLANK ( _Quantity ),
            ISBLANK ( _Value )
        ),
        BLANK (),
        _Ratio
    )

 

1 ACCEPTED SOLUTION
daxer-almighty
Solution Sage
Solution Sage

@joshua1990 

 

Mate, all you need is this formula (and it's faster for obvious reasons):

Ratio =
    DIVIDE (
        SUM ( Sales[Quantity] ),
        SUM ( Sales[Value] )
    )

View solution in original post

3 REPLIES 3
daxer-almighty
Solution Sage
Solution Sage

@joshua1990 

 

Mate, all you need is this formula (and it's faster for obvious reasons):

Ratio =
    DIVIDE (
        SUM ( Sales[Quantity] ),
        SUM ( Sales[Value] )
    )
Jihwan_Kim
Super User
Super User

Hi, @joshua1990 

please correct me if I wrongly understood your question.

Please try the below.

 

Picture2.png

 

Ratio 2 =
COALESCE (
DIVIDE ( SUM ( 'Table'[Quantity] ), SUM ( 'Table'[Value] ), "" ),
""
)

 

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


Thanks, but why would you say your measure works better? What is the advantage here?

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.

Top Solution Authors