Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
First, thank you for reading this post and any insight I might receive
following this post. I am currently working on a spreadsheet where users will input figures on a monthly basis from a P&L worksheet. I am looking for a way to make it easier for users to move the figures from the previous month into a new column so those figures can be compared to the new month. Currently, users input the new month's information into Column C but I would like a macro or something for the users to click and it will move that information in Column C into Column D and clear Column C. Hope that makes sense?!? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How's this?
Columns("C").Copy Destination:=Columns("D") Columns("C").ClearContents -- -SA "VegasBurger" wrote: First, thank you for reading this post and any insight I might receive following this post. I am currently working on a spreadsheet where users will input figures on a monthly basis from a P&L worksheet. I am looking for a way to make it easier for users to move the figures from the previous month into a new column so those figures can be compared to the new month. Currently, users input the new month's information into Column C but I would like a macro or something for the users to click and it will move that information in Column C into Column D and clear Column C. Hope that makes sense?!? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So is this a macro and if so, how would you set it up?
"StumpedAgain" wrote: How's this? Columns("C").Copy Destination:=Columns("D") Columns("C").ClearContents -- -SA "VegasBurger" wrote: First, thank you for reading this post and any insight I might receive following this post. I am currently working on a spreadsheet where users will input figures on a monthly basis from a P&L worksheet. I am looking for a way to make it easier for users to move the figures from the previous month into a new column so those figures can be compared to the new month. Currently, users input the new month's information into Column C but I would like a macro or something for the users to click and it will move that information in Column C into Column D and clear Column C. Hope that makes sense?!? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you're new to macros:
Debra Dalgleish has some notes how to implement macros he http://www.contextures.com/xlvba01.html David McRitchie has an intro to macros: http://www.mvps.org/dmcritchie/excel/getstarted.htm Ron de Bruin's intro to macros: http://www.rondebruin.nl/code.htm (General, Regular and Standard modules all describe the same thing.) VegasBurger wrote: So is this a macro and if so, how would you set it up? "StumpedAgain" wrote: How's this? Columns("C").Copy Destination:=Columns("D") Columns("C").ClearContents -- -SA "VegasBurger" wrote: First, thank you for reading this post and any insight I might receive following this post. I am currently working on a spreadsheet where users will input figures on a monthly basis from a P&L worksheet. I am looking for a way to make it easier for users to move the figures from the previous month into a new column so those figures can be compared to the new month. Currently, users input the new month's information into Column C but I would like a macro or something for the users to click and it will move that information in Column C into Column D and clear Column C. Hope that makes sense?!? -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select C and InsertColumns?
Gord Dibben MS Excel MVP On Thu, 17 Jul 2008 11:07:00 -0700, VegasBurger wrote: First, thank you for reading this post and any insight I might receive following this post. I am currently working on a spreadsheet where users will input figures on a monthly basis from a P&L worksheet. I am looking for a way to make it easier for users to move the figures from the previous month into a new column so those figures can be compared to the new month. Currently, users input the new month's information into Column C but I would like a macro or something for the users to click and it will move that information in Column C into Column D and clear Column C. Hope that makes sense?!? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Spreadsheet Question | Excel Discussion (Misc queries) | |||
Question Concerning Look of SpreadSheet | Excel Discussion (Misc queries) | |||
Excel Spreadsheet question | Excel Discussion (Misc queries) | |||
Spreadsheet Question | Excel Discussion (Misc queries) | |||
EXCEL SPREADSHEET SET-UP QUESTION | Excel Worksheet Functions |