Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Can you create a macro that simply reverses another macro. much like a reversing month end Journal??? Ie MACRO 1 the macro hides column N, then multiplies Column C x D Can I make a macro to reverse this? MACRO 2 divides column D / C , then unhides column N I realise that this is a simple example and i could create a separate macro, but the macro I wish to reverse is much larger!! Anyone got any ideas?? ta muchly all!! -- guilf ------------------------------------------------------------------------ guilf's Profile: http://www.excelforum.com/member.php...o&userid=25608 View this thread: http://www.excelforum.com/showthread...hreadid=391018 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Of course you can reverse the macro. Just start at the bottom and wor your way up. Are you going for an 'undo' type of functionality after running macro -- bhofset ----------------------------------------------------------------------- bhofsetz's Profile: http://www.excelforum.com/member.php...fo&userid=1880 View this thread: http://www.excelforum.com/showthread.php?threadid=39101 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
AFAIK there is no undo function with a macro. A workaround however is
to use a revertToLastSaved macro which returns you to the last saved state if the results of the macro are unsatisfactory, such as: Sub RevertFile() wkname = ActiveWorkbook.Path & "\" & ActiveWorkbook.Name ActiveWorkbook.Close savechanges:=False Workbooks.Open FileName:=wkname End Sub Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reversing the log | Excel Discussion (Misc queries) | |||
Reversing a column. How? | Excel Discussion (Misc queries) | |||
reversing entry | New Users to Excel | |||
Reversing First & Last Name | Excel Worksheet Functions | |||
Reversing Words | Excel Programming |