View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JEFF JEFF is offline
external usenet poster
 
Posts: 5
Default Creating a macro to swap cells but retain formatting

Greetings,

I have a macro that I am using to swap the contents of two cells. When I
use it I lose any character formatting that I have applied to the cell(s).
Does anyone have any insights into how to do a swap cell macro but retain
the formatting?

Sub SwitchCells()
'
' Macro created 4/13/2007 by willis

Range("k13") = Range("g13")
Range("g13") = Range("b13")
Range("b13") = Range("k13")
Range("k13") = ""
End Sub

Best regards!
Jeff