Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to create a daolg box /and or macro that will allow me to check
the information form a list that I have defined in Excel. This information will be directly put into the cell. Thanks for your help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Checking a list is a little vague. What do you mean by Check?
-- Regards, Tom Ogilvy "MIKE" wrote in message ... I am trying to create a daolg box /and or macro that will allow me to check the information form a list that I have defined in Excel. This information will be directly put into the cell. Thanks for your help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mike,
If what you mean by check is compare or look for some common value then you could try something like this: For Each c In Range("E11", Range("E10").End(xlDown)) exspec = c.Value Set y = Range("K1101", Range("K1100").End(xlDown)).Find(exspec, LookIn:=xlValues) If y Is Nothing Then Your action here End if I used this to compare 2 lists and then take some appropriate action. "MIKE" wrote: I am trying to create a daolg box /and or macro that will allow me to check the information form a list that I have defined in Excel. This information will be directly put into the cell. Thanks for your help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create search boxes in Excel | Excel Discussion (Misc queries) | |||
how do i create list boxes in excel | Excel Worksheet Functions | |||
How do I create check boxes? | Excel Worksheet Functions | |||
How do i create a value for check boxes or option boxes | Excel Discussion (Misc queries) | |||
how do I create drop boxes | Excel Programming |