View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_626_] Leith Ross[_626_] is offline
external usenet poster
 
Posts: 1
Default ComboBox Row Source across ALL sheets


Hello Corey,

To place all the D3 values in the ComboBox, change the code to...


Code:
--------------------

Sub ListAll()

Dim Wks As Worksheet

For Each Wks In Worksheets
ComboBox1.Add Wks.Range("D3").Text
Next Wks

End Sub


--
Leith Ross


------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=557954