How to disable the numerous pop-up/warning boxes when saving as a .csv file?

pcvchriskmg

Board Regular
Joined
Feb 10, 2010
Messages
118
Hi,

I am using Excel 2007. I am editing and re-uploading a .csv file, and each time I save my file, I am confronted with the following messages:

"Filename" may contain features that are not compatible with CSV (comma delimited). Do you want to keep the workbook in this format?

I click "Yes" and then receive:

Then when I go to close the file, immediately after saving, I receive:

"Do you want to save the changes to "Filename"?

I click "Yes" and the receive, again:

"Filename" may contain features that are not compatible with CSV (comma delimited). Do you want to keep the workbook in this format?

I just want to save and close the file without these warnings. How can I disable them?

Thanks,
Chris
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try using:

Sub ***()
Application.ScreenUpdating = False
Application.DisplayAlerts = False

'After the other code switch back on
Application.DisplayAlerts = True
Application.ScreenUpdating = True

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,570
Messages
6,179,610
Members
452,931
Latest member
The Monk

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