Need help

jeff7188

New Member
Joined
Nov 22, 2021
Messages
8
Office Version
  1. 2021
Platform
  1. Windows
Im using 3 columns that have formulas
G has =EDATE(F3,12)
H has =G3-TODAY()
I has =IF(H3<0,"EXPIRED",IF(H3<30,"EXPIRING SOON"))

So when I put in a date in F it puts in the information I need. The problem is when I drag the formula down it shows all the information. i ONLY WANT THE INFORMATION TO SHOW WHEN I ENTER THE DATE IN COLUMN f. ANY HELP WOULD BE APPRECIATED.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(F3="","",EDATE(F3,12))
 
Upvote 0
IGNORE - new message came up as I hit post
Solved
use an IF( cell you manually enter = "", "" , your formula)
 
Upvote 0
Then you need to check if F has a date in it as part of each formula, simply use the basics below for each of your formula columns, entering your existing formula where it says to.
Remember to remove the = sign from the start of your formula when you slot it in.

=IF(F3<>"",your formula here,"")
 
Upvote 0
I suspect the OP was referring to post#3 & post#5 didn't exist when I made post#6 ;)
 
Upvote 0

Forum statistics

Threads
1,214,870
Messages
6,122,021
Members
449,060
Latest member
LinusJE

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