Data Validation List with No Blanks

zacheisjd

Board Regular
Joined
Oct 23, 2008
Messages
50
I'm currently configuring a workbook that we send to customers to fill out with their employee names, emails, manager names etc. So I would have something like this:
Employee NameManagerOrganization
Jane SmithOrg 1
John SmithJane SmithOrg 2
No DataNo DataNo Data
No DataNo DataNo Data

<tbody>
</tbody>

The Manager column would have data validation list using A2:A1000 (I don't know how many names they will enter so I have to make the range large enough to accommodate a large list). The problem is that using data validation list doesn't ignore the blanks and populates them in the dropdowns making it unnecessarily long and difficult to use.

My goal is to find some way to get the data validation list but without the blanks populating from the large range. I cannot use VBA/macros because some customers don't allow their use in their company and/or users may not have it enabled.

Any direction is much appreciated. :)
 
Last edited:

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Code:
=OFFSET(functions!$J$4,0,0,COUNTIF(functions!$J$4:$J$65536,"> "))
This is what you'll put in the data validation field, change the functions!$J to the sheet name and range you need.
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

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