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
bmpi
Frequent Visitor

Improvement of IF-CALCULATE calculation

I have a formula that runs slow, which I am looking to improve..

 

Is there a more efficient way to write this formula?

(I want to return 0 if the colour is not "blue" for average calculation purposes)

 

In addition I want to return blank on all dates larger than today, but I did not find a way to make this work for this calculation.

 

# Blue People =

 IF(

    ISBLANK(CALCULATE([# People], Product[Colour] = "Blue")) ,

       0,

     CALCULATE([# People], Product[Colour] = "Blue"))

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

hi @bmpi 

please try

=
COALESCE ( CALCULATE ( [# People], Product[Colour] = "Blue" ), 0 )

View solution in original post

5 REPLIES 5
Syk
Super User
Super User

try something like this

Blue people =
var BluePeeps = CALCULATE([# People],Product[Colour]="Blue")
RETURN if(MAX('Date'[Date])<TODAY(), BluePeeps,0)
bmpi
Frequent Visitor

Thanks!

 

Ended up with a mix of both suggestions:

 

# Blue People  =

VAR BluePeeps = CALCULATE([# People], Product[Colour] = "Blue"))
VAR COAL = COALESCE(BluePeeps,0)
RETURN IF(max(dimDate[Date]) <= TODAY(), COAL, BLANK())

Good to hear! For a bit simpler return you can leave off the last BLANK(). If you don't include anything for the false part of the if statement, it will automatically return blank!

tamerj1
Super User
Super User

hi @bmpi 

please try

=
COALESCE ( CALCULATE ( [# People], Product[Colour] = "Blue" ), 0 )

bmpi
Frequent Visitor

Thanks, work like a charm.

 

Ended up with a mix of both suggestions:

 

# Blue People  =

VAR BluePeeps = CALCULATE([# People], Product[Colour] = "Blue"))
VAR COAL = COALESCE(BluePeeps,0)
RETURN IF(max(dimDate[Date]) <= TODAY(), COAL, BLANK())

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