Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
Please help me to find the error in following expression.
ROUND(ONLY(IF(SUB='FIN',GRO_PRE*.01)={"<0"},SUM(IF(SUB='FIN',GRO_PRE*.01))))
Regards,
Priyantha.
Hi,
Try like this
ROUND(ONLY(IF(SUB='FIN',GRO_PRE*.01)<0,SUM(IF(SUB='FIN',GRO_PRE*.01))))
Regards
ROUND(ONLY(SUM(IF(SUB='FIN' And GRO_PRE*.01 <0,GRO_PRE*.01))))
It seems that the expression could be optimized. However, that would require more information like, where you are using this expression(chart/text box/..), what you expect the output to be...Otherwise, syntactically if you want the correction, it might be like:
ROUND(ONLY(IF(SUB='FIN',GRO_PRE*.01)<0,SUM(IF(SUB='FIN',GRO_PRE*.01))))
Hi,
Use This :
ROUND(ONLY(IF(SUB='FIN',GRO_PRE*.01)<=0,SUM(IF(SUB='FIN',GRO_PRE*.01))))
Regards
Suresh Rawat