Hi,
Currently I have this VBA code working perfectly:
Sub clearcheck()
Dim sh As Worksheet
For Each sh In Sheets
On Error Resume Next
sh.CheckBoxes.Value = False
On Error GoTo 0
Next sh
Range("E2, F2").ClearContents
End Sub
I also have 3 checkboxes (form control) linked to 3 corresponding cells and I’m just using with some conditional format function to highlight 3 other cells “=IF($B10=TRUE;TRUE;FALSE)”.
Everything is working just fine, but now I would like to add one more function. What I need is that every time I tick a checkbox I need to automatically copy the content of another cell.
Example:
IF Cell B6 true, copy F6 content to clipboard.
IF Cell B8 true, copy F8 content to clipboard.
IF Cell B10 true, copy F10 content to clipboard.
Can anyone please help me..
Bookmarks