Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi, i have two sheets in workbook named as shtbiz,shtbiz1.
so column A of my shtbiz1 sheet i have 100 datas.the by using following code i can fill the datas of shtbiz1 in column A of shtbiz. code: Code: Dim strValItems strValItems = "" Dim rngValList As Range, rngValCell As Range Set rngValList = ShtBiz1.Range("A6", Range("A10000").End(xlUp)) With ShtBiz.Range("A6:A10000") .Validation.Delete For Each rngValCell In rngValList If Len(strValItems) 0 Then strValItems = strValItems & "," strValItems = strValItems & rngValCell.Value Next .Validation.Add xlValidateList, , , strValItems End With so my problem is i need to add blank value in the top of the list .ie first value should be blank then other values which read from shtbiz1 has to be followed.so please help me to include one blank value at the to pof my validation list please |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Indirect validation list with blank in list | Excel Discussion (Misc queries) | |||
How do include a (blank) cell within a Custom Fill List? | Excel Discussion (Misc queries) | |||
blank entries in data validation list | Excel Worksheet Functions | |||
validation and omitting blank vaues from list | Excel Worksheet Functions | |||
Returning a blank for validation list | Excel Worksheet Functions |