wetruesley
New Member
- Joined
- May 24, 2013
- Messages
- 1
Hi,
I'm using VBA to copy the format of a cell from one workbook to another. Here is the code:
When I paste with this code it works perfectly fine on my workstation using both Excel 2003 and 2007. However, when the end user tries the font is changed from White to Red, with Excel 2003,7,10 and 13 (I've only personally seen it on his workstation using 2003). If any other color is selected it is pasted correctly eg. blue font shows as blue font. This issue only occurs with the white font. Suggestions?
Thanks,
Wesley
I'm using VBA to copy the format of a cell from one workbook to another. Here is the code:
Code:
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
When I paste with this code it works perfectly fine on my workstation using both Excel 2003 and 2007. However, when the end user tries the font is changed from White to Red, with Excel 2003,7,10 and 13 (I've only personally seen it on his workstation using 2003). If any other color is selected it is pasted correctly eg. blue font shows as blue font. This issue only occurs with the white font. Suggestions?
Thanks,
Wesley