Formula needed to receive negative response for multiple columns

CJGunner87

New Member
Joined
Oct 11, 2018
Messages
2
Sorry my Title might be misleading! Here is what I'm looking for. In column D is the date a vehicle is request to be used from in column H is the registration for the vehicle that will be used. I want column m to tell me if that registration input in column H is already in use for the date in column D based on all the dates already in column D and all the registrations already in column H. I apologize if I'm not making any sense if I could wrap my head around this by myself I wouldn't need to post here haha. thanks for any help y'all can give
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Put this in M1 and drag down.

Code:
=IF(SUMPRODUCT(($D:D=D2)*(H:H=H2))>1,"Yes","No")
 
Upvote 0
Put this in M1 and drag down.

Code:
=IF(SUMPRODUCT(($D:D=D2)*(H:H=H2))>1,"Yes","No")



Thank you for that that's awesome! Unfortunately I’m only me half way their. Thisworkbook has macros that allow me to create a list of registration numbers andselect multiple of those from that list in one cell. How would I figure thisinto that formula so It’ll see both those registrations and tell me if one isalready assigned for that date?


 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,779
Members
449,049
Latest member
greyangel23

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