ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Highlighting a cell, and undo and redo buttons (https://www.excelbanter.com/excel-programming/272900-highlighting-cell-undo-redo-buttons.html)

John[_35_]

Highlighting a cell, and undo and redo buttons
 
I ran the following code to validate if a user has entered a number.
The problem is when the cells interior color are changed, the undo and
redo buttons become non functional. What can I do to make them
functional and still highlight a cell with an invalid entry? When
cells are validated using Excel's validation, the undo and redo
buttons still work OK. How do I highlight a cell like in Excel's cell
validation? Is there another way of highlighting?

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If IsNumeric(Cells(Target.Row, Target.Column).Value) = False
Then
Cells(Target.Row, Target.Column).Select
Cells(Target.Row, Target.Column).Interior.ColorIndex = 4


Thank you
John

Shailesh Shah[_2_]

Highlighting a cell, and undo and redo buttons
 
Hi,

You have to write your own undo function.
There are exampes at John Walkenbach's site.

http://j-walk.com/ss/excel/tips/tip23.htm

Regards,
Shah Shailesh


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


All times are GMT +1. The time now is 10:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com