View Single Post
  #4   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

Thank you very much!

I have merged cells that I am working with. In this case I assume I have to
unmerge first before I swap. Does anyone have any advice?

<snip
Range("B13").MergeCells = False
</snip

Thanks!

"Vergel Adriano" wrote in message
...
Jeff,

maybe something like this

Sub SwitchCells()

Range("G13").Copy Range("K13")
Range("B13").Copy Range("G13")
Range("K13").Copy Range("B13")
Range("K13").ClearFormats
Range("K13").ClearContents

End Sub



--
Hope that helps.

Vergel Adriano


"JEFF" wrote:

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