Group: microsoft.public.excel.misc · Group Profile · Search for Teasee in microsoft.public.excel.misc
Author: DazzaData
Date: May 30, 2007 07:30
Are these checkboxes from the Forms toolbar? If yes: ption Explicit Sub testme() Dim CBX As CheckBox Dim wks As Worksheet Set wks = Worksheets("sheet1") For Each CBX In wks.CheckBoxes CBX.LinkedCell = Application.Range(CBX.LinkedCell).Offset(0, 1) _ .Address(external:=True) Next CBX End Sub Teasee wrote:
|