Saving file bypass pop up message

288enzo

Well-known Member
Joined
Feb 8, 2009
Messages
721
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

My company has a pop up for data classification, the data classification company is Titus if it makes a difference.

I'm trying to create and save a new Excel file. Is there a way to bypass Titus?

I tried the following, but that still gives me the Titus pop up.

VBA Code:
    Set newWB = Workbooks.Add
    With newWB
        Filename = "File A"
        Set newS = newWB.Sheets("Sheet1")
        newS.Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False
        Application.DisplayAlerts = False
        Workbooks(newWB.Name).SaveAs Filename:=Filename & ".xls"
        Application.DisplayAlerts = True
    End With

Thank you
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You cannot bypass Titus via VBA.
I figured it out, the below solution works.

VBA Code:
       Application.DisplayAlerts = False
       Application.EnableEvents = False
       Workbooks(newWB.Name).SaveAs Filename:=Filename & ".xls"
       Application.DisplayAlerts = True
       Application.EnableEvents = True
 
Upvote 0

Forum statistics

Threads
1,215,228
Messages
6,123,747
Members
449,118
Latest member
kingjet

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