Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Excel Experts, What code would I use to say, Make the format of each cell in this row, the same as the format of the cell in the row above ? Thanks, Alan -- achidsey |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell.Offset(-1,0).EntireRow.copy
Rows(ActiveCell.row).Pastespecial xlPasteFormats -- Regards, Tom Ogilvy "achidsey" (notmorespam) wrote in message ... Excel Experts, What code would I use to say, Make the format of each cell in this row, the same as the format of the cell in the row above ? Thanks, Alan -- achidsey |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.ScreenUpdating = False
With ActiveCell .Offset(-1, 0).EntireRow.Copy .EntireRow.Cells(1).PasteSpecial xlPasteFormats .Select End With Application.CutCopyMode = False Application.ScreenUpdating = True Tim "achidsey" (notmorespam) wrote in message ... Excel Experts, What code would I use to say, Make the format of each cell in this row, the same as the format of the cell in the row above ? Thanks, Alan -- achidsey |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom and Tim, Thanks for the response. Alan
-- achidsey "achidsey" wrote: Excel Experts, What code would I use to say, Make the format of each cell in this row, the same as the format of the cell in the row above ? Thanks, Alan -- achidsey |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Formats, how to scroll and view all formats? | Excel Worksheet Functions | |||
Copying formats - column widths, formats, outlining to worksheets | Excel Worksheet Functions | |||
Conditional formats- paste special formats? | Excel Discussion (Misc queries) | |||
paste conditional formats as formats | Excel Discussion (Misc queries) | |||
Formats: Too many different cell formats error message | Excel Programming |