Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Duplicating cell properties

Hello all and thanks in advance for any help I may get.

Here is what I am trying to do. A3 to F3 in the column headings.

They are as follows:
Store ID, Retailer, Last Name, First Name, Amount, and Contest. Each has its own formatiing and in B4 I have a combo box. What I would like to happen is after all required info is enter into row 4 I would like row 5 to take on the properties that row 4 had before the data was entered.

Make any sense?

Thanks
Brian
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 25
Default Duplicating cell properties

What about:

Sub CopyFormats()
'
' CopyFormats Macro
' Macro recorded 15/04/2005 by 08504629
'

'
Rows("4:4").Select
Selection.Copy
Rows("5:5").Select
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
End Sub


--
|
+-- Julian
|

"NOOB :-)" wrote in message
ng.com...
Hello all and thanks in advance for any help I may get.

Here is what I am trying to do. A3 to F3 in the column headings.

They are as follows:
Store ID, Retailer, Last Name, First Name, Amount, and Contest. Each has

its own formatiing and in B4 I have a combo box. What I would like to
happen is after all required info is enter into row 4 I would like row 5 to
take on the properties that row 4 had before the data was entered.

Make any sense?

Thanks
Brian



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula for Duplicating info from one cell to another Timbo Excel Discussion (Misc queries) 9 April 14th 08 05:23 PM
Duplicating Rows Based on Cell Value [email protected] Excel Discussion (Misc queries) 6 September 19th 06 11:35 PM
Duplicating cell value between worksheets Dennis Excel Worksheet Functions 6 January 12th 06 03:42 AM
Duplicating Cell Information [email protected] Excel Worksheet Functions 1 March 10th 05 12:47 PM
Duplicating a cell (EXACTLY) Marty Excel Programming 2 November 29th 04 06:05 AM


All times are GMT +1. The time now is 09:50 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"