Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After Copying a range of data from another workbook into my current wb
the copied area now takes on the source range format that did not have the gridlines. I need to somehow (thru code) how to apply the grid lines to ny destination sheet in the code after the Paste line. Can't figure out how?? Any help appreciated, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this, as far as i can see the paste formulas is what will do this for you
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False -- -John Please rate when your question is answered to help us and others know what is helpful. "JMay" wrote: After Copying a range of data from another workbook into my current wb the copied area now takes on the source range format that did not have the gridlines. I need to somehow (thru code) how to apply the grid lines to ny destination sheet in the code after the Paste line. Can't figure out how?? Any help appreciated, |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
John, I tried by recording a macro -- this seems to work
ActiveSheet.Range("A1").Copy Range("A8:B250").PasteSpecial Paste:=xlPasteFormats Tks, "John Bundy" wrote: Try this, as far as i can see the paste formulas is what will do this for you Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False -- -John Please rate when your question is answered to help us and others know what is helpful. "JMay" wrote: After Copying a range of data from another workbook into my current wb the copied area now takes on the source range format that did not have the gridlines. I need to somehow (thru code) how to apply the grid lines to ny destination sheet in the code after the Paste line. Can't figure out how?? Any help appreciated, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
missing text when using paste special from word to excel | Excel Discussion (Misc queries) | |||
how to copy and paste with the gridlines using excel | New Users to Excel | |||
how do I copy and paste and have my gridlines show using excel? | New Users to Excel | |||
Missing text from copy/paste | Excel Discussion (Misc queries) | |||
where are my missing gridlines | Excel Discussion (Misc queries) |