Help with an IF formula please!

BJSinger76

New Member
Joined
Dec 4, 2014
Messages
15
I need some help please! Hopefully this is possible, I feel like with Excel anything is!

I need a formula that if a DATE is entered in column C, then in column B it would populate 30 days from the date in column A. If there is NOTHING in column C, then column B would just be the 30 days from the date entered in column A. Does that make sense? Thanks in advance!
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
How about
=IF(C1<>"",C1,A1)+30
 
Upvote 0
It sounds like you have an entry in A1 or C1 that is NOT a date.

Enter the following formulas in any cells, and see what they return (dates are actually stored as numbers):
=ISNUMBER(A1)
=ISNUMBER(C1)


If either returns FALSE, then you do not have a valid date (number) in that cell, so you will not be able to do math on it.
 
Upvote 0

Forum statistics

Threads
1,223,098
Messages
6,170,106
Members
452,302
Latest member
TaMere

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