Thread: Change_Event
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
steve steve is offline
external usenet poster
 
Posts: 576
Default Change_Event

Hawk,

I used the following and the format changed instantly when I hit the Enter
key (using Excel97):

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Target.NumberFormat = "00000#"
End Sub

--
sb
"Hawk" wrote in message
...
I am trying to change a cell's NumberFormat within the
WorksheetChange_Event. The format is changed, but it is
not reflected in the cell until the next time I change the
cell. Any ideas on how to make the NumberFormat be
applied and used immediately after the cells value is
changed? TIA