Formula Needed to Populate a Next Date

crizzo

New Member
Joined
May 11, 2016
Messages
2
I require some help with a logic formula to populate the next date for an assessment schedule.

I have 3 columns.

Column A contains a frequency: "annual" biannual" or "N/A"
Column B contains a 4 digit year: 2014, 2015, 2016 etc
Column C needs to contain a formula to populate what the "next" date will be based on the year from column B and the frequency contained in column A. (ie. If a is "annual" and b is "2015" then c will display "2016"; if a is "biannual", b is "2015" then c will display "2017"; if a is "N/A" and b is "N/A" then c needs to populate "N/A"

I can do a basic formula, but it doesn't work the way I want it to. It's populating a "1" or "2" rather than an N/A.

Any help would be much appreciated.

Thanks,

Crystal
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Welcome to the Board!

Is this what you are looking for?
Code:
=IF(A1="annual",B1+1,IF(A1="biannual",B1+2,"N/A"))
 
Upvote 0
You are welcome. Glad to help!
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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