Thread: Undo change
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bhuktar S[_5_] Bhuktar S[_5_] is offline
external usenet poster
 
Posts: 1
Default Undo change

Can anyone help to let me know how do to allow user to undo the chang
in a cell which has been conditioned through VBA?
For example, as in below, after the user changes the value in cel
(2,12), it cannot be undone to make it unchanged. The user needs t
re-enter the old value again.
I do not want to add a macro button for formatting the number.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Cells(2, 12).Value < 100 Then
Cells(2, 12).NumberFormat = """AW10""0"
Else: Cells(2, 12).NumberFormat = """AW1""0"
End If
End Su

--
Message posted from http://www.ExcelForum.com