Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Friends
The following expression does not work
if(RENEWABLE>0,count(DISTINCT {<EDATE={"=$(vFdate)"}>}POLICY_NO))
Pls help me to correct it
Or this
Count(DISTINCT {<EDATE={"$(vFdate)"}, RENEWABLE = {'>0'}>} POLICY_NO)
or with equal sign
Count(DISTINCT {<EDATE={"$(=vFdate)"}, RENEWABLE = {'>0'}>} POLICY_NO)
But do you have a mistake Or does not give the results...
Check the date formats. Usually this is a common problem.
try this
if(RENEWABLE>0,count(DISTINCT {<EDATE={"$(=vFdate)"}>}POLICY_NO))
Maybe
count(DISTINCT {<EDATE={"$(vFdate)"}>} if(RENEWABLE>0,POLICY_NO))
or
count(DISTINCT {<EDATE={"$(=vFdate)"}>} if(RENEWABLE>0,POLICY_NO))
or
count(DISTINCT {<EDATE={"$(vFdate)"}, POLICY_NO={"=RENEWABLE>0"} >} POLICY_NO)
Or this
Count(DISTINCT {<EDATE={"$(vFdate)"}, RENEWABLE = {'>0'}>} POLICY_NO)
or with equal sign
Count(DISTINCT {<EDATE={"$(=vFdate)"}, RENEWABLE = {'>0'}>} POLICY_NO)
May be
count({<RENEWABLE={'>0'}, EDATE={$(vFdate)}>} Distinct policy_no)