Thread: Undo results
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Ivan Raiminius Ivan Raiminius is offline
external usenet poster
 
Posts: 258
Default Undo results

Hi Edson,

at the end of procedure changing cell content you can specify using
application.onundo method a procedure that will be run to undo these
changes. Unfortunately you must write this undo procedure yourself. Two
possible ways: keep track of cell values, formulas... or perform
inverse operation (for example: if you inserted rows, you can delete
them with your undo procedure).

Regards,
Ivan