- Jan 8, 2002
- 18,927
- 0
- 76
I have a cell and formula as follows:
=IF(C3="Premium",152.00,0.00)
However, I want it to be if C3="Premium" then 152.00 OR if C3="Advance" then 107.00.
How would I achieve this?
Ok I was able to achieve what I wanted by:
=IF(C3="Premium",152,IF(C3="Advance",107))
However, what if I want to add more things such as another "IF" statement?
How would this be achieved?
Like Premium=152, Advance=107, Install=45, Warranty=0, Data Backup=$45 etc etc etc?
=IF(C3="Premium",152.00,0.00)
However, I want it to be if C3="Premium" then 152.00 OR if C3="Advance" then 107.00.
How would I achieve this?
Ok I was able to achieve what I wanted by:
=IF(C3="Premium",152,IF(C3="Advance",107))
However, what if I want to add more things such as another "IF" statement?
How would this be achieved?
Like Premium=152, Advance=107, Install=45, Warranty=0, Data Backup=$45 etc etc etc?