Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, Experts, I having a problem on counting dimension with some conditional expression.
In the red box (A) below.
I need to count the the number of enterprise which meet the condition expression.
when condition vYearlyKPI >= ContractedSLA then only take count the enterprise.
vYealyKPI = (((1+(floor(date(ContractDuration_Date_Max)) - floor(date(ContractDuration_Date_Min))))*24*60)
- (Sum( If(Outage_Month = Outage_Month and Outage_Year=year(Today()) and [Enterprise Name]=[Enterprise Name], [Negotiated Outage Duration (minute)]))))
/((1+(floor(date(ContractDuration_Date_Max)) - floor(date(ContractDuration_Date_Min))))*24*60)
Can anyone help on this. Thanks!
you should aggregate your variable "vYearlyKPI" maybe with a Sum( ... ) as well as Sum( [Contracted Availability (%)]/100 ).
maybe this:
Sum( Aggr( if( $(vYearlyKPI) > ContractedSLA, 1, 0 ), Enterprise ) )
Hi, thanks, but this expression doesn't give the result I expect. The result should be "3" in this case.
you should aggregate your variable "vYearlyKPI" maybe with a Sum( ... ) as well as Sum( [Contracted Availability (%)]/100 ).
Thanks I found the solution