Copy sheet to workbook the text color in a cell dont follow.

i200yrs

New Member
Joined
Dec 18, 2019
Messages
43
Office Version
  1. 2019
  2. 2016
  3. 2013
  4. 2011
  5. 2010
Platform
  1. Windows
Hello All...I got successfull vba code to copy the worksheet to different workbook.
In one worksheet cell have text with color (Title is orange, Status is blue, Plan is black).
But when I check the saved copy, the Title text color change to blue...the rest of texts are correct.
The funny thing is, when i double click that cell, the Title text color change to orange (correct color).
When select other cell, the Title text color go back to blue (wrong color).
Any idea how to fix this? thanks

Bottom line: I want a code to copy sheet into a different workbook without changing any format. I want copy exact. Thanks

Here is my code:

VBA Code:
Public Function FileInUse(sFileName) As Boolean
    On Error Resume Next
    Open sFileName For Binary Access Read Lock Read As #1
    Close #1
    FileInUse = IIf(Err.Number > 0, True, False)
    On Error GoTo 0
End Function


Sub TestCopyFile()
    Dim wb As Workbook

    myFilePath = "\\WeeklyMeeting\Backup\Test.xlsx"
    If FileInUse(myFilePath) Then
        MsgBox "File is open. Cannot overwrite!"
    Else
        Set wb = Workbooks.Add
        ThisWorkbook.Sheets("Test").Copy Before:=wb.Sheets(1)
        wb.SaveAs "\\WeeklyMeeting\Backup\Test.xlsx"
        wb.Close
    End If

End Sub
 
Last edited:

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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