im_kaushal
New Member
- Joined
- May 8, 2010
- Messages
- 27
Hi All,
The below mentioned event code changes the changed cell value to bold. I want this to be applicable to all the worksheets available in the workbook. I know i can paste this code in all the worksheets, but just want to know is there a better way of making it applicable in all the worksheets, specially in a situation where my workbook has around 50 sheets.
macro which changes the cell value to bold is
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Font.Bold = True
End Sub
Regards, Kaushal
The below mentioned event code changes the changed cell value to bold. I want this to be applicable to all the worksheets available in the workbook. I know i can paste this code in all the worksheets, but just want to know is there a better way of making it applicable in all the worksheets, specially in a situation where my workbook has around 50 sheets.
macro which changes the cell value to bold is
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Font.Bold = True
End Sub
Regards, Kaushal