Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I received help writing this worksheet event code, but i was hoping to change 1 small thing. 1. Id like to format only the cells in columns E,F,H,I as opposed to the whole row. Here is the code i currently have that formats the whole row rather than what i need. ================================================== ============================= Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False On Error GoTo ws_exit If Target.Column = 2 Then Select Case Target.Value Case "ES": Target.EntireRow.NumberFormat = "(###0.00)" Case "NQ": Target.EntireRow.NumberFormat = "(###0.00)" Case "AB": Target.EntireRow.NumberFormat = "(###0.00)" Case "YM": Target.EntireRow.NumberFormat = "(###0.00)" Case "ZB": Target.EntireRow.NumberFormat = "(# ??/32)" Case "EC": Target.EntireRow.NumberFormat = " (#.0000)" Case "JY": Target.EntireRow.NumberFormat = " (##0.00)" Case "ED": Target.EntireRow.NumberFormat = " (#0.000)" End Select End If ws_exit: Application.EnableEvents = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Command button to toggle worksheet event code on / off? | Excel Discussion (Misc queries) | |||
Starting/Stopping Worksheet Event Code | Excel Discussion (Misc queries) | |||
Where?Worksheet code module or Worksheet_SelectionChange event han | Excel Worksheet Functions | |||
Worksheet Event Code | Excel Worksheet Functions | |||
Enable/Disable Worksheet Change Event code | Excel Programming |