less than 0.5 but more than -0.5

  • Thread starter Thread starter Ctech
  • Start date Start date
C

Ctech

I have this formula now

Range("A2").FormulaR1C1 = _
"=IF(SUMIF(C[10],RC[10],C[11])=0,""SortLow"",""SortHigh"")"


How can I change this to take more than -0.5 and less than +0.5?


Thanks
 
Range("A2").FormulaR1C1 = _
"=IF(ABS(SUMIF(C[10],RC[10],C[11]))<=0.5," & _
"""SortLow"",""SortHigh"")"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top