Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Friend,
My result display value which include 0 & negative. how to modified my formula to exclude it? Thanks.
Have a nice day 🙂
=Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}
(Gate))-count([SR No])
Dear All,
Correct answer as below. Thanks.
sum(Aggr(
if(
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No]))>0,
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No])),
'No repetition') , [SR No]))
Put the expression in a variable and use an if condition?
if($(your variable)>0, $(your var), 'val have 0's and negative')
Hi Arjun,
I manage to get the display in table. but how im gonna show the total in KPI object? it showing NaN.Could be due to the text. it should show 8 instead of NaN.
if(
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No]))>0,
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No])),
'No repetition')
i think you'll need an aggr function to achieve it.
change your expression
from;
YourMeasure
to:
if (YourMeasure>0, YourMeasure, 0)
and under add-on, uncheck : show zro values.
in a KPI, try sthing like:
sum({<Yourdim={"=sum(YourMeasure)>0"}>}YourMeasure)
Dear All,
Correct answer as below. Thanks.
sum(Aggr(
if(
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No]))>0,
(Count({$<[SR No]={"=Min ({<Temp = {'Task_1'}>}[Date Created]) >= MakeDate(2018,1,15)"}>
*$<[SR No]-={"''"}>
*$<[Gate]={"Gate C"}>
}(Gate))-count([SR No])),
'No repetition') , [SR No]))