Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I get the right result for the following expression in a table:
=IF(OpenTime1 < time(time_of_md),0,Sum(NO_OF_TCKTS))
How can i get the same result in a KPI object?
I tried the following but it does not give the right result
Sum(Aggr(IF(OpenTime1 < time(time_of_md),0,Sum(NO_OF_TCKTS)),Store))
Thanks
Please, try something like this:
Sum({<[OpenTime1] = {"<$(=time(time_of_md))"}>} NO_OF_TCKTS)
Please, try something like this:
Sum({<[OpenTime1] = {"<$(=time(time_of_md))"}>} NO_OF_TCKTS)
Thanks that works.