retain table formatting when coping workbook

BORUCH

Well-known Member
Joined
Mar 1, 2016
Messages
528
Office Version
  1. 365
Platform
  1. Windows
Hi all i have the below code copies one sheet to anther sheet my problem is that when it copies it to the other sheet it loses the original table formatting from where its coming form any help is greatly appreciated

thanks

VBA Code:
Sub CopySheetFromClosedWorkbook()
Application.ScreenUpdating = False
    Dim sourceBook As Workbook
    Dim fname As String, SheetName As String, s As String
    Dim ExistFile As Boolean, ExistSheet As Boolean
    SheetName = "abcd"
    fname = "C:\Users\jack\Documents\test\test123.xlsx"
    ExistFile = (Dir$(fname) <> "")
    If Not ExistFile Then
        MsgBox "File '" & fname & "'" & vbCr & "not found", vbInformation
        Exit Sub
    End If
    Set sourceBook = Workbooks.Open(fname)
    With sourceBook
        On Error Resume Next
        s = .Sheets(SheetName).Name
        ExistSheet = (s = SheetName)
        On Error GoTo 0
        If Not ExistSheet Then
            MsgBox "Sheet '" & SheetName & "'" & vbCr & "not found", vbInformation
            Exit Sub
        End If
         Application.ScreenUpdating = False
         Call SelectWorkbook1234
         .Sheets(SheetName).Copy After:=ActiveWorkbook.Sheets(ActiveWorkbook.Sheets.Count)
        .Close False
        End With


End Sub

VBA Code:
Sub SelectWorkbook1234()
Application.ScreenUpdating = False
Dim wb As Workbook
For Each wb In Workbooks
    If Left(UCase(wb.Name), InStrRev(wb.Name, ".")) Like "[A-Z][A-Z]###-######." Then
      wb.Activate
      ElseIf Left(UCase(wb.Name), InStrRev(wb.Name, ".")) Like "[A-Z][A-Z]###-[A-Z]#####." Then
      wb.Activate
      ElseIf Left(UCase(wb.Name), InStrRev(wb.Name, ".")) Like "[A-Z][A-Z][A-Z][A-Z]#-######." Then
      wb.Activate
      Exit For
    End If
  Next wb


End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,215,129
Messages
6,123,214
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top