detriez
Board Regular
- Joined
- Sep 13, 2011
- Messages
- 193
- Office Version
- 365
- Platform
- Windows
I am trying to populate the current cell as follows while keeping the IFERROR statement
My logic is:
If H7="BASIC" then current cell ="BASIC"
If H7=<1 then current cell ="HYB"
Else H7/G7*100
This will only work on error or if H7=BASIC
My logic is:
If H7="BASIC" then current cell ="BASIC"
If H7=<1 then current cell ="HYB"
Else H7/G7*100
This will only work on error or if H7=BASIC
Code:
=IFERROR((IF(H7="BASIC","BASIC",IF(H7<1,"HYB"))(H7/G7*100)),0)