Help with simple formula... PRETTY PLEASE :)?

kittykatkat

New Member
Joined
Sep 23, 2015
Messages
1
Hi, I am a new excel user and can't figure out my IF formula.

I'm trying to use this in an invoice for a vacation rental company.. I don't know what I am doing wrong...

=IF(A1="HIGH",95,0)+IF(A1="APRIL",110,0)+IF(A1="LOW",80,0)

I want it to do $95 for when the cell says HIGH, for high season ... and $110 when cell says "APRIL" and $80 for "LOW" season.

Thank you!!!! :)
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Welcome to the Board!

If you're going to have more conditions then a lookup table would be more flexible, but this should work:

=IF(A1="HIGH",95,IF(A1="APRIL",110,IF(A1="LOW",80,0)))

HTH
 
Upvote 0
Welcome to the board.

Try
=IF(A1="HIGH",95,IF(A1="APRIL",110,IF(A1="LOW",80,0)))
 
Upvote 0
This formula works OK here, does A1 have the right input?

Best regards, Henk
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,333
Members
452,636
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top