Likely an easy fix - Vlookup with multiple if statements

Myopic Matt

New Member
Joined
Jul 10, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have a project spreadsheet wherein I am trying to perform a v look up based on what the status is for a project with the goal to spit out the "time card last submitted date" for only "in progress" projects while stating a text field for projects that are not "in progress". This is created works =IF((E2="in progress"),VLOOKUP(A2,'Projects Data'!$A$3:$AU$251,10,FALSE),"Project Not In Progress") and the formula provides either the time card submission date or "Project Not In Progress"...
MY PROBLEM is some of the projects do not have a time card last submitted date (blank field) so the formula spits out "1/01/1900" for these. I really need the formula for "in progress" projects without a time card last submitted date to be flagged with another text warning.. Any thoughts appreciated! Thank you.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
How about

=IF(E2="in progress",IFERROR(1/(1/VLOOKUP(A2,'Projects Data'!$A$3:$AU$251,10,FALSE)),"No date"),"Project Not In Progress")
 
Upvote 0
Thank you Fluff! Really appreciate it!
I played union in College, tough sport and still hope someday the USA will get better ;)
Thank you again!!
 
Upvote 0
You're welcome & thanks for the feedback.

The Eagles will get better once the sport becomes better known, & I think that the powers that be are heading in the right direction in that regard.
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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