Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default validate lists

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default validate lists


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default validate lists

yes you can email it to
remove 'dom' right after the @ in the email address.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default validate lists

Did you get my email?

"sebastienm" wrote:

yes you can email it to
remove 'dom' right after the @ in the email address.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default validate lists

I got it, yes.
I think I get it know; you are tring to implement Dependent Lists for Data
Validation, isn't it?
I 'll work on it once i get home tonight.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

Did you get my email?

"sebastienm" wrote:

yes you can email it to
remove 'dom' right after the @ in the email address.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default validate lists


Yes - I want the Total Time Spent cell to reference back to the data
validation drop down list that contains - Admin-Revenue- Warranty-Sick or
Vacation etc. and have that cell reference the Time Allocation table.

"sebastienm" wrote:

I got it, yes.
I think I get it know; you are tring to implement Dependent Lists for Data
Validation, isn't it?
I 'll work on it once i get home tonight.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

Did you get my email?

"sebastienm" wrote:

yes you can email it to
remove 'dom' right after the @ in the email address.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default validate lists

Any Luck?

"Imaginator" wrote:


Yes - I want the Total Time Spent cell to reference back to the data
validation drop down list that contains - Admin-Revenue- Warranty-Sick or
Vacation etc. and have that cell reference the Time Allocation table.

"sebastienm" wrote:

I got it, yes.
I think I get it know; you are tring to implement Dependent Lists for Data
Validation, isn't it?
I 'll work on it once i get home tonight.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

Did you get my email?

"sebastienm" wrote:

yes you can email it to
remove 'dom' right after the @ in the email address.
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:


The issue is that I have one cell validated list that contains "Revenue -
Administration - Warranty - Sick or Vacation Pay" the cell next to it
validates what function the field engineer did i.e. "system commissioning for
Revenue or emails for Administration" the next cell should call out to a time
sheet that they fill in and reflects back to let's say " Revenue- System
Config.

If this is confusing myabe I can send you the .xls sheet to look at?
"sebastienm" wrote:

Could you please be more specific.

I assume you are trying to have data validation as follow:
- The data-entry cells value must be found in the range Data
So far, no problem, nothing different than normal. You would use a regular
List type of data validation.
- The issue is that Data is made of 3 non-continuous ranges: Data1, Data2,
and Data3
In this case, you could use a function that checks is the value is in one
(at least) of these 3 ranges. To use a function, you would the Custom type of
data validation instead of the List type:

Assuming the data entry cell is A1:
=NOT(AND(ISERROR(MATCH(B2,data1,0)),ISERROR(MATCH( B2,data2,0)),ISERROR(MATCH(B2,data3,0))))

would that work for you?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Imaginator" wrote:

I really need an answer if you can provide one

"sebastienm" wrote:

Hi,
What do you mean by 'validate a list'?
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Drop down lists from multiple source lists RoofIL Excel Worksheet Functions 3 February 18th 10 09:44 PM
validate kyoshirou Excel Discussion (Misc queries) 18 June 6th 07 01:08 AM
LISTS- adding info without repeat to other lists Jemimastar Excel Discussion (Misc queries) 1 December 1st 06 09:29 PM
Multiple lists with repeated values for dependet drop down lists mcmanusb Excel Worksheet Functions 1 September 29th 06 12:13 AM
How do I validate data using different lists based on the data in. Shannon Excel Discussion (Misc queries) 1 March 28th 05 05:55 PM


All times are GMT +1. The time now is 11:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"