I'm trying to create a code that when selecting a particular click box the contents of a specific cell gets copied over to a new cell on a new page. The code that I currently have is:
Sub CBCR71b_Click()
If ActiveSheet.CheckBoxes("CBCR71b").Value = 1 Then
Sheets("ELA Output").Range("CR7.1b").Value = Sheets("ELA").Range("cr1b").Value
Else
Sheets("ELA Output").Range("CR7.1b").Value = ""
End If
This works fine if I only want the value of the cells copied over. In this project that would be text. But now I need to be able to move text where some of the words have bold or italics. The above code ignores that.
The other simiar questions on this site run through a range of cells so am not sure if the clickbox is running interference. I have tried replacing .value with .font.bold, but then nothing happens.
Any help would be appreciated!