I have the Code
Code:
Sub BuildDropDowns(cell)
Dim Drops As Dropdown
App_Sheet.Range(cell).Select
Set Drops = App_Sheet.DropDowns.Add(540, 247.5, 103.5, 15.75)
Drops.ListFillRange = "$S$2:$S$9"
Drops.LinkedCell = cell
Drops.DropDownLines = 8
Drops.Display3DShading = False
Set Drops = Nothing
End Sub
I Would like to do is move the DropDown so it sits on of the selected cell each time I pass a cell ref
eg
call BuildDropDowns("D17")
call BuildDropDowns("D19")
call BuildDropDowns("D21")
call BuildDropDowns("D23")
can someone point to the right place
I now .Add(540, 247.5, 103.5, 15.75) = left,top,width,Height
left,width,Height won't move
Top the has be stump.
Where is top ?? and how far is D17 form the top