Formula help

Urlord

Board Regular
Joined
Aug 5, 2010
Messages
130
I have the following formula in sheet1 B2
=CONCATENATE(Sheet2!$A2," ",Sheet2!$C2," ",Sheet2!D2,"")

What I would like to do is add "Calibration Due" if the date in sheet2$j2
is 30 days or less from today()

I am using Office 2007

Thanks
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
should just be an easy if statement

=if(days360(today(),otherdate)<30,=conc formula with calibration due, =conc formula without calib due)
 
Upvote 0
You put me on the right path. Thank you I made some modifications and it works
I'm not sure what you mean by:

30 days or less from today()

But, if that formula does what you want it can written like this:

=Sheet2!$A2&" "&Sheet2!$C2&" "&Sheet2!D2&IF(DAYS360(TODAY(),Sheet2!J2)<30," Calibration Due","")
 
Upvote 0
I'm not sure what you mean by:



But, if that formula does what you want it can written like this:

=Sheet2!$A2&" "&Sheet2!$C2&" "&Sheet2!D2&IF(DAYS360(TODAY(),Sheet2!J2)<30," Calibration Due","")

Thanks
What I meant by 30 days from today() was that I wanted "Calibration Due" to show up if todays date was within 30 days of the annual calibration being due.
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,843
Members
452,948
Latest member
UsmanAli786

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