K
King
Last question;
I have two comboboxes. The first has a rowsource from a named range of
dates. I want to populate the second rowsource when a date is chosen in the
first one. I only want to show dates greater than the first in the second.
I am assuming I want to use a for each to compare values, but I am stumped:
Dim CheckDate as ?
Combobox2.rowsource=""
For Each CheckDate in (namedrange)
if CheckDate > Combobox1.value then
combobox2.additem CheckDate
end if
next CheckDate
Any suggestions? Thanks!
I have two comboboxes. The first has a rowsource from a named range of
dates. I want to populate the second rowsource when a date is chosen in the
first one. I only want to show dates greater than the first in the second.
I am assuming I want to use a for each to compare values, but I am stumped:
Dim CheckDate as ?
Combobox2.rowsource=""
For Each CheckDate in (namedrange)
if CheckDate > Combobox1.value then
combobox2.additem CheckDate
end if
next CheckDate
Any suggestions? Thanks!