Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
Probably a really bad title but couldn't quite figure out how to word it.
I am wanting to report on how many of our projects have achieved their target KPI of a go live date. So currently I have;
In KPI = IF([Servicecommencementdate] > [Targetgolivedate], "No", "Yes")
However some of the results in Servicecommencementdate have no data because the project has not gone live yet. Ideally I'd like the projects that have not yet gone live and have missed their target date to show "No", with "Yes" until that time happens but suspect that might not be possible.
If it isn't possible, how could I have it so the In KPI column is left blank for those projects that have yet to have anything added to the Servicecommencementdate column?
Thanks.
Solved! Go to Solution.
Hi @Anonymous ,
does this code give you your desired outcome:
In KPI = SWITCH ( TRUE (), ISBLANK ( [Servicecommencementdate] ) && TODAY () <= [Targetgolivedate], "Yes", ISBLANK ( [Servicecommencementdate] ) && TODAY () > [Targetgolivedate], "No", [Servicecommencementdate] > [Targetgolivedate], "No", [Servicecommencementdate] <= [Targetgolivedate], "Yes", "Other" )
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Hi @Anonymous ,
does this code give you your desired outcome:
In KPI = SWITCH ( TRUE (), ISBLANK ( [Servicecommencementdate] ) && TODAY () <= [Targetgolivedate], "Yes", ISBLANK ( [Servicecommencementdate] ) && TODAY () > [Targetgolivedate], "No", [Servicecommencementdate] > [Targetgolivedate], "No", [Servicecommencementdate] <= [Targetgolivedate], "Yes", "Other" )
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Sturla thanks very much that is great. Out of interest what is the "other"?
Thanks.
The last statement of the switch-function is the ELSE-value, if none of the the other statements in the switch-statement evaluates to true, use this value. I prefer to use something else than blank, so I just randomly choose to use "Other". Having something else than blank sometimes makes it easier to troubleshoot.
User | Count |
---|---|
84 | |
75 | |
69 | |
49 | |
39 |
User | Count |
---|---|
111 | |
56 | |
50 | |
42 | |
40 |