Excel 2010/2007 - How much can be done with Custom Validation?

B

bartt.shelton

Excel 2010/2007

(Posting to programming group because my instincts tell me code would be required...)

I implement a rather robust application that uses a large footprint of reference data. Experience has shown that during an implementation, it’s fareasier for the client to review the reference data in a spreadsheet formatand then upload en-masse. The data has to adhere to validation that resides in the app GUI.

We’ve got a utility to upload the spreadsheet, but it doesn’t currentlyinclude any validation. As a result, the utility spits out errors that have to be reviewed & re-processed.

Some of that error/review/reprocess could be reduced if I can add at least some validation to the spreadsheet.

Custom Validation can easily do things like checking for duplicates, but there are some more sophisticated validation schemes that I’d like to employ. I don’t know whether they’re possible w/ pure Excel Custom Validation or whether they’d require VBA.

e.g. say I’ve captured a Location list:

State City
CA San Diego
NY New York
FL Miami
CA San Francisco
CA Los Angeles
FL Jacksonville

Next, consider that I’ve moved on to contacts/people in a different set of the ref data capture & need to specify an address.

Is there a way to employ custom validation (without VBA because I don’t want to have to support VBA code in addition to app code) that would allow auser to select a State in cell A2 of the user sheet (e.g. “CA”) which in turn limits my validation list for the contact's city to only those Cities from the selected state? e.g. on contact sheet, for "State" user selects “CA” & the selection list in contact sheet for "City" becomes “San Diego”, “San Francisco”, & “Los Angeles”.

Initially, the State/City list wouldn’t be sorted, but that’s a simple enough exercise that I could justify a simple macro to do it.
 
B

Bartt

Sounds like dependent Validation lists.

See Debra Dalgeish's site for help.

http://www.contextures.on.ca/xlDataVal02.html

Gord Dibben    Microsoft Excel MVP













- Show quoted text -

Well, not exactly. Debra's approach requires static lists behind each
piece of the validation. I need a dynamic list that "adjusts" as
users enter additional information. To do what I'm talking about with
that approach, I'd have to write code that would parse each line as
the user entered it, determine which state it was in, then append it
to that state's list of cities.

I'm looking more for a way to do something like:
select StateCity.City from StateCity where StateCity.State = "CA"

i.e. one master list that includes a blend of all States & Cities.
 
G

Gord

I'm sure you can find some combination of methods from Debra's DV
pages that will work.

Go to her Excel home site and browse through the extensive DV section.

Try downloading a few of her files to get a better visual idea of how
they operate on dependent, dynamic, sorted lists.

Maybe even using a ComboBox to allow autocomplete.


Good luck, Gord
 
K

Kris

I'm sure you can find some combination of methods from Debra's DV
pages that will work.

Go to her Excel home site and browse through the extensive DV section.

Try downloading a few of her files to get a better visual idea of how
they operate on dependent, dynamic, sorted lists.

Maybe even using a ComboBox to allow autocomplete.

Good luck,                       Gord

This link has both the option (VBA + Formula)

http://www.excelfox.com/forum/showthread.php?111-Dependent-Data-Validation-(Using-Only-Formulas)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top