> =IF(H6>=30<=60; F6; 0)
Try reframing it like this, using AND:
=IF(AND(H6>=30, H6<=60); F6; 0)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Mark" wrote:
> How do i write this function: if H6 is greater than or equal to 30 but less
> than or equal to 60; let it be equal to F6; if not let it be equal to zero.
> I tried using the "IF" function as follows: =IF(H6>=30<=60; F6; 0) without
> success. Can anyone assist?