Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how can i write set analysis query for
=if(isnull(FinanceRelease)=-1 and isnull(BusinessHeadRelease)=0 ,count(CapexKey))
here financerelease & businessheadrelease are date fields.
Pls. help me out for this.
Hi
Something like below,
=Count({$<FinanceRelease={"=isNull(FinanceRelease)"}, BusinessHeadRelease={"*"}>} CapexKey)
Hi Rahul
try this
count({<FinanceRelease={'isnull(FinanceRelease)=-1'},BusinessHeadRelease={'isnull(BusinessHeadRelease)=0'}>}CapexKey)
hope this will help you
May be something like this..
Count({$<FinanceRelease = {"=LEN(TRIM(FinanceRelease))=0"},BusinessHeadRelease = {"=LEN(TRIM(BusinessHeadRelease))>0"}>}CapexKey)
Sorry ,but its not giving any results
Hi, Nirmal
Thanks for your reply, but sorry to say,its not working nor giving any errors
Hi
Try like this
=Count({<FinanceRelease-={"*"}, BusinessHeadRelease={"*"}>} CapexKey)
Hi
Try Like this
count(CapexKey={"=isnull(FinanceRelease)=-1 and isnull(BusinessHeadRelease)=0"}>}CapexKey))
Hi Rahul,
probably the simplest way to do this is to create a null flag field in your script and use that within the set analysis.
In your script:
If(Isnull(FinanceRelease),'NULL') As FinanceRelease_NullFlag
Then in your expression:
=Count({$<FinanceRelease_NullFlag={'NULL'}, BusinessHeadRelease={'*'}>} CapexKey)
Hope that helps
Joe
if(<FinanceRelease={'$(=null())'} ,BusinessHeadRelease={'$(=null())'}> count(CapexKey))