View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
mangesh_yadav[_310_] mangesh_yadav[_310_] is offline
external usenet poster
 
Posts: 1
Default Link Problem Can a MAcro do this?


And if you want a combobox instead, then select a combobox from th
control toolbox (View Toolsbars. select the control toolbox) and no
the forms menu. The name of this combobox would be ComboBox1. The
enter the following code in the module of the concerned sheet.


Private Sub Worksheet_Activate()
ComboBox1.LinkedCell = "Sheet1!B1"
ComboBox1.ListFillRange = "Sheet1!J1:J12"
End Sub

Private Sub ComboBox1_Change()
Range("A1") = "='D:\[quality Scores.xls]" & ComboBox1.Value
"'!B2"
End Sub


Manges

--
mangesh_yada
-----------------------------------------------------------------------
mangesh_yadav's Profile: http://www.excelforum.com/member.php...fo&userid=1047
View this thread: http://www.excelforum.com/showthread.php?threadid=37889