Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a button that has the following VB connected with it. The function
will only swap the values of two cells and not the formats. I would like the formats to be swapped as well. Any ideas? Private Sub CommandButton1_Click() Dim vTemp As Variant With Selection If .Count < 2 Then MsgBox "2 cells only." Else If .Areas.Count = 2 Then vTemp = .Areas(1).Cells.Value .Areas(1).Cells.Value = .Areas(2).Cells.Value .Areas(2).Cells.Value = vTemp Else vTemp = .Cells(1).Value .Cells(1).Value = .Cells(2).Value .Cells(2).Value = vTemp End If End If End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
print 20 cells with a command button | Excel Discussion (Misc queries) | |||
How can I add values in 2 cells using a command button | Excel Programming | |||
sum cells using command button ADD | Excel Programming | |||
Using Command Button to copy cells | Excel Discussion (Misc queries) | |||
Non Working Cells after command button | Excel Programming |