Retrieve the ControlFormat.LinkedCell value for use in VBA formula

mattlightbourn

New Member
Joined
May 15, 2014
Messages
4
Hi,
I have a set of Form Control check boxes on my Excel sheet which I have assigned to macros. However, for each row, I had had to create individual macros per row. Instead, I would like to just have the two macros below and use the format control cell link row number to set the checkRow value as below.

I have looked all over the various forums and either my search is too ambiguous or not specific enough. What I want to do is set the value of checkRow below by retrieving the LinkedCell value from the checkbox that I selected when clicking on it. Please can you help? Thanks, Matt

Code:
Sub CheckBox4_Click()
Dim checkRow As Long
checkRow = ??????????????
If Cells(checkRow, 8).Value = False Then
Cells(checkRow, 6).Value = True
Cells(checkRow, 7).Value = True
Cells(checkRow, 8).Value = True
End If
If Cells(checkRow, 8).Value = True Then
Cells(checkRow, 8).Value = True
End If
End Sub

Sub CheckBox3_Click()
Dim checkRow As Long
checkRow = ??????????????
If Cells(checkRow, 7).Value = False Then
Cells(checkRow, 6).Value = True
Cells(checkRow, 7).Value = True
End If
If Cells(checkRow, 7).Value = True Then
Cells(checkRow, 7).Value = True
End If
End Sub
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You can assign this macro to all of your checkboxes. I think it will give you what you need to modify your code.
When working with Form controls, the .ControlFormat of the Shape object is often used.

Code:
Sub test()
    With ActiveSheet.Shapes(Application.Caller)
        MsgBox .Name & " is linked to " & .ControlFormat.LinkedCell
    End With
End Sub
 
Upvote 0
awesome thanks - it works (I inserted it into my script to check) however, my next mission is to get the ControlFormat.LinkedCell value into a range variable so that I can set another variable (checkRow) to be the Row number. Any ideas? I'm sure there's a one liner in there rather than me using two variables but my brain is bleeding

Code:
Sub CheckBox4_Click()
Dim checkRow As Long
checkRow = 6
    With ActiveSheet.Shapes(Application.Caller)
        MsgBox .Name & " is linked to " & .ControlFormat.LinkedCell
    End With
If Cells(checkRow, 8).Value = False Then
Cells(checkRow, 6).Value = True
Cells(checkRow, 7).Value = True
Cells(checkRow, 8).Value = True
End If
If Cells(checkRow, 8).Value = True Then
Cells(checkRow, 8).Value = True
End If
End Sub
 
Last edited:
Upvote 0
hehe, my attempt was the following, but doesn't work, unfortunately I have to bastardise scripts and cobble them together since I am not experienced enough to create from scratch, trying to learn on the job, not always the best way :( thanks for your help

Code:
Sub CheckBox4_Click()
Dim checkRow As Long
Dim shapeRef As Range
    With ActiveSheet.Shapes(Application.Caller)
    shapeRef.Value = .ControlFormat.LinkedCell
    End With
    checkRow.Value = shapeRef.Row
If Cells(checkRow, 8).Value = False Then
Cells(checkRow, 6).Value = True
Cells(checkRow, 7).Value = True
Cells(checkRow, 8).Value = True
End If
If Cells(checkRow, 8).Value = True Then
Cells(checkRow, 8).Value = True
End If
End Sub
 
Upvote 0
Try this. There isn't really a need to be using intermediate values (like checkRow)
All of that information is contained in the Shape. If you're only going to use the info once, there's no need to preserve it.
Code:
With ActiveSheet
    With .Range(.Shapes(Application.Caller).ControlFormat.LinkedCell).EntireRow
        If .Cells(1, 8).Value = False Then
            .Cells(1, 6).Resize(1, 3)Value = True
        End If
    End With
End With
 
Upvote 0
thanks for this, I have three checkboxes per row and I want to setup only 3 scripts as opposed to 3 x number of rows. So, depending on the checkbox, will provide the variable I need to affect data in a specific row which is the same row that the linkedcell is attributed to the form control.

So if my script wants to apply a data change to Cells(checkRow, 8) when the checkbox on row 4 is selected, the data change is applied to Cells(4,8) because checkRow value is set to 4.

I need to make checkRow variable =
.Range(.Shapes(Application.Caller).ControlFormat.LinkedCell).EntireRow

Thanks, Matt
</pre>
 
Upvote 0

Forum statistics

Threads
1,215,575
Messages
6,125,631
Members
449,241
Latest member
NoniJ

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top