Validation on multiple column

Jomathr

New Member
Joined
Feb 11, 2014
Messages
2
Good afternoon everyone,

I thought I knew how to do this but seems not, I am trying to validate a cell value to see if it's in a name ranged and check if the cell above is the offset of the named ranged.

here is an example of what I have:

On sheet1 I have the following:
Cell C6 contain a category chosen from a dropdown list
Cell C7 is where I need the validation and type a productID (too many products to use a dependant drop down list)

on Sheet2 I have the following:
Column B contain all the productID
Column Q contain all the catégorie

for the validation I have to check if it exist in Sheet2!Column B wich is a dynamic named range called LI_Product_No AND if the product category in column Q is equal to C6

Here is what I thought that would work in custom validation:

=AND(LI_Product_No,OFFSET(LI_Product_No,15,0) = 'sheet1'!C6)

Anyone have a clue on what is wrong with my formula or another one altogether to solve this?

Thank you for your time
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
I think my mind was too set in VBA,

figured it out using Excel thinking by replacing the validation by:

=AND(LI_Product_No,VLOOKUP(C7,'sheet2'!product_Table,16,FALSE)=C6)

in wich Product_table refers to the entire table (B2:Q51) in this case
 
Upvote 0
Thank you for the update & feedback.
 
Upvote 0

Forum statistics

Threads
1,217,265
Messages
6,135,553
Members
449,946
Latest member
Axdby

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