ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   copy the font color (https://www.excelbanter.com/excel-programming/392648-copy-font-color.html)

Max Bialystock[_2_]

copy the font color
 
How can I copy the font color (and only the font color) from A1 to B1?


Norman Jones

copy the font color
 
Hi Max,

How can I copy the font color (and only the font color) from A1 to B1?


Try:

'=============
Public Sub Tester()
With ActiveSheet.Range("A1")
.Offset(0, 1).Font.ColorIndex = .Font.ColorIndex
End With
End Sub
'<<=============


---
Regards,
Norman



joel

copy the font color
 
Copy - Paste Sprecial can copy only formats. The color index is a type of
format.

"Norman Jones" wrote:

Hi Max,

How can I copy the font color (and only the font color) from A1 to B1?


Try:

'=============
Public Sub Tester()
With ActiveSheet.Range("A1")
.Offset(0, 1).Font.ColorIndex = .Font.ColorIndex
End With
End Sub
'<<=============


---
Regards,
Norman




Norman Jones

copy the font color
 
Hi Joel,

'----------------
Copy - Paste Sprecial can copy only formats. The color index is a type of
format.

'----------------

The OP's question explicitly specified:

" ... copy the font color (and only the font color) ..."

- hence my response.


---
Regards,
Norman



joel

copy the font color
 
I know formats will copy other things along with color index. Wasn't sure if
Max wanted to use VBA code.

"Norman Jones" wrote:

Hi Joel,

'----------------
Copy - Paste Sprecial can copy only formats. The color index is a type of
format.

'----------------

The OP's question explicitly specified:

" ... copy the font color (and only the font color) ..."

- hence my response.


---
Regards,
Norman




Keith Wilby

copy the font color
 
"Joel" wrote in message
...
I know formats will copy other things along with color index. Wasn't sure
if
Max wanted to use VBA code.


Perhaps he wants to colour to "Bloom" ;-)


Max Bialystock[_2_]

copy the font color
 
Thanks Norman,
that's perfect.

Max



"Norman Jones" wrote in message
...
Hi Max,

How can I copy the font color (and only the font color) from A1 to B1?


Try:

'=============
Public Sub Tester()
With ActiveSheet.Range("A1")
.Offset(0, 1).Font.ColorIndex = .Font.ColorIndex
End With
End Sub
'<<=============


---
Regards,
Norman





All times are GMT +1. The time now is 12:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com