Formula to create blank based on 2 cells

EdieB

New Member
Joined
Apr 1, 2016
Messages
18
Office Version
  1. 2013
Platform
  1. Windows
I have this formula in N2
=IF(AND(A2="Y",H2>0),5,10)

I can't figure out how to get N2 to be blank if A2 is blank. This is for a golf league where if they play at least once within a month, they pay $5. If they haven't played within the month, they will pay $10 if they want to participate (A2). If they are not going to play at the end of the month, I would like N2 to be blank

Can someone help me with a 3rd criteria?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Does this do what you want?

Code:
=IF(A2="","",IF(AND(A2="Y",H2>0),5,10))
 
Upvote 0
Yes, it worked perfectly. Thank you so much.
 
Upvote 0

Forum statistics

Threads
1,215,811
Messages
6,127,018
Members
449,351
Latest member
Sylvine

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