Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Currently, we want to add one condition that close_date = null in set analysis, how to reach that?
e.g. sum({< close_date={null()} >} total)
But, this expression cannot work.
What can I do if want to add null condition in set analysis? Thanks.
May be this:
=Sum({<close_date = {"=Len(Trim(close_date)) = 0"}>}total)
or
=Sum({<close_date = {"=IsNull(close_date)"}>}total)
or
=Sum({<close_date -= {'*'}>}total)
Hi,
Try like this
sum({< close_date-={'*'} >} total)
Hope this helps you.
Regards,
Jagan.
try like this
=Sum({<close_date = {"=if(Len(Trim(close_date)) = 0,close_date)"}>}total)
or
=Sum({<close_date -= {'*'}>}total)
Thank you for your replay, let me try it. Thanks again.