Forum Discussion
Megan McNamara
Sep 20, 2018Copper Contributor
Assistance with nested formula
Can someone assist? I have created a formula which is working to a point. I just can't figure out how to stop it providing information if the cell has no data in it. What I need is the No of hours...
- Sep 20, 2018
=IF(ISBLANK(N4),"0",IF(N4<=$S$4,"1",IF(N4<$S$5,"2",IF(N4<$S$6,"3",IF(N4<$S$7,"4","0")))))
BobOrrell
Sep 20, 2018Iron Contributor
=IF(ISBLANK(N4),"0",IF(N4<=$S$4,"1",IF(N4<$S$5,"2",IF(N4<$S$6,"3",IF(N4<$S$7,"4","0")))))
- Megan McNamaraSep 21, 2018Copper Contributor
Thanks so much Bob. That worked perfectly.
- BobOrrellSep 21, 2018Iron Contributor
You're welcome. Glad I could help.