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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Does this do what you want?

Code:
=IF(A2="","",IF(AND(A2="Y",H2>0),5,10))
 
Upvote 0

Forum statistics

Threads
1,225,635
Messages
6,186,128
Members
453,340
Latest member
Stu61

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