Validation in 4 columns for todays date

exceluser9

Active Member
Joined
Jun 27, 2015
Messages
388
Hi Team,

I have below data, i require a formula in column E where it should say pending / completed.

Wherever there is no todays date it should say pending and where todays date is present it should say completed.

Dates ate populated in this sheet by a vlookup from different sheet.

Column AColumn BColumn CColumn DColumn EColumn E
NameDate 1Date 2Date 3Date 3Expected Result
Jack03/07/201902/07/201901/07/201927/06/2019Completed
Rahul22/06/201902/07/201901/07/201927/06/2019Pending
Silas 02/07/2019 Pending
James02/07/2019 Pending
Jones02/07/201901/07/2019 Pending
Prem 03/07/2019Completed
Ram03/07/2019 Completed
Rajesh 03/07/2019 Completed
Bruce 03/07/2019 Completed
Vince 03/07/201903/07/2019 Completed
Jacob03/07/201903/07/201903/07/201903/07/2019Completed
Thomas03/07/201903/07/201903/07/2019 Completed
Gill03/07/2019 Completed
Joy Pending

<colgroup><col><col span="4"><col></colgroup><tbody>
</tbody>
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Re: Validation in 4 columns for todays date - Urgent

Hey try this:

=IF(OR(B2=TODAY(),C2=TODAY(),D2=TODAY(),E2=TODAY()),"Completed","Pending")
 
Upvote 0
Re: Validation in 4 columns for todays date - Urgent

Another option
=IF(ISNUMBER(MATCH(TODAY(),B2:E2,0)),"Completed","Pending")
 
Upvote 0
Re: Validation in 4 columns for todays date - Urgent

Hi,

Formula is not working, to make it work i have to paste special the date and click on the cell (F2) and then hit tab. Post which im getting results. Any idea to fix this?

And i require one more formula where even if date is any other date in column E it should say completed. Except the date 00/01/1900
 
Last edited:
Upvote 0
Re: Validation in 4 columns for todays date - Urgent

Who are you talking to?
There are two replies.
 
Upvote 0
Re: Validation in 4 columns for todays date - Urgent

Are your dates proper dates?
If you format the dates cells to General do you see numbers like 43649?
 
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

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