Formula condition!!

  • Thread starter Thread starter Bob Vance
  • Start date Start date
B

Bob Vance

--

=SUM(DG164:DG165)
Only calulate if only if (DJ168>0) is more than zero

Thanks in advance for your help....Bob Vance
 
just place that condition with an IF before the other one;

IF(DJ168>0,SUM(DG164:DG165),"FALSE")
 
Back
Top