Formula help please, IF function with GREATER THAN TODAY minus 30 days

Morrowend

New Member
Joined
Mar 9, 2017
Messages
2
I'm currently using a formula to act as a prompt to contact people who are overdue or not current members and want to change it to prompt about a month before their membership runs out.

I know I could add an extra column for the due date and use DATEDIF but I'd rather keep fewer columns on the spreadsheet (my dad has to be able to use it and the more columns the more likely it is to not be filled in correctly) so I wondered if there is a way to change my current formula from giving a prompt required message only after the renewal date to the renewal date less 30 days.

My current formulas is this:

=IF(ISBLANK(F15),"Required",IF(F15>TODAY(),"","Required"))

Anyone have any ideas?
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Try This

Code:
[/COLOR]=IF(ISBLANK(F15),"Required",IF((F15-TODAY())<30,"Required",""))
 
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,816
Members
449,469
Latest member
Kingwi11y

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