colonel179
New Member
- Joined
- Feb 27, 2018
- Messages
- 4
Hello everyone!
I am having trouble getting to move an entire table from one sheet to another.
I found this code from Jerry Sullivan:
That is EXACTLY what I need!! (thanks!). However, while it moves the table from A to B, it does not move it from B to A. Is there a way you could help me fix it? I am relatively new at VBA.
Thank you very much for your help!!
I am having trouble getting to move an entire table from one sheet to another.
I found this code from Jerry Sullivan:
Code:
[COLOR=#333333]Sub ToggleTableHiddenSheet()[/COLOR] Const sHomeSheet = "Sheet1"
Dim sMoveToSheet As String
With Range("Table1[#All]")
If .Parent.Name = sHomeSheet Then
sMoveToSheet = "HideTable"
Else
sMoveToSheet = sHomeSheet
End If
.Cut Destination:= _
Sheets(sMoveToSheet).Range(.Cells(1).Address)
End With [COLOR=#333333]End Sub[/COLOR]
That is EXACTLY what I need!! (thanks!). However, while it moves the table from A to B, it does not move it from B to A. Is there a way you could help me fix it? I am relatively new at VBA.
Thank you very much for your help!!