Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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"))
Solved! Go to Solution.
try something like this
Blue people =
var BluePeeps = CALCULATE([# People],Product[Colour]="Blue")
RETURN if(MAX('Date'[Date])<TODAY(), BluePeeps,0)
Thanks!
Ended up with a mix of both suggestions:
# Blue People =
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!
Thanks, work like a charm.
Ended up with a mix of both suggestions:
# Blue People =
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |