Master Workbook - Saving File With XLSX Extension

Jun 23, 2014

I have a master workbook that contains macros and has an xlsm extension.

One macro in the workbook copies one of the worksheets to a new workbook. I then want to save this new workbook as an xlsx file. I use the following code line:

.SaveAs Filename:=Extract_Save_Name & ".xlsx", FileFormat:= _
xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False

However, when I run the code I get an error:

"This extension cannot be used with the selected file type."

The new workbook does not contain any macros and if I save the workbook "manually" as an xlsx it saves fine.

If I change the code above to have "xlsm" it works fine - but I don't want that extension.

View 1 Replies


ADVERTISEMENT

How To Save File With Correct File Extension (XLS Or XLSX)

Mar 12, 2014

How can I save worksheet from existing workbook as a new workbook with extension .xls or .xlsx depending on the version of Excel on which the original was opened and no matter the extension of original?

My code that I was trying to create all above does not work, because even if I am using Excel 2007, 2010 or 2013 it will still be saving only as .xls.

View 2 Replies View Related

What Does Extension .xlsx Mean

Apr 19, 2009

I have just received an eMail from my accountant and here file name extension is .xlsx. I have never seen this before. Can someone tell me why the x on the end of the extension? . Also, when it opens, a Message Box is displayed: File Conversion in process.

View 4 Replies View Related

VBA Code To Open Any Excel Extension (XLS / XLSX / XLSM)

Apr 22, 2014

I am using the following code to open a woorkbook:

Workbooks.Open Filename:= "C:UsersDesktopExcel.xlsx"

I am running into an issue were a file may be saved as .xls or .xlsm instead, but I still need to have the macro open it. Is there a way to adjust the above code, or other code for that matter, that will allow my macro to open any of these extensions?

View 3 Replies View Related

Saving Cell Contents To XML File Saved As Current Workbook File Name

Dec 12, 2012

I have numerous spreadsheets that I need to open and unhide a sheet, that has XML data stored in cell A1. What I need to do is copy that data in cell A1 and paste it into a text document and save that as an XML file saved as the XLS workbook name with a date stamp.

I'm running into many issues, the main issue is the saving as current file name, and the formatting of the text/XML file.

Here is my current code, which doesn't reference the current file name and is just very generic. Once I get the saving as file-name correct and the formatting of the xml file correct, I will work on it a bit more.

Code:
Sub Test()
Dim Rng As Range
Dim wb As Workbook
Set Rng = Range("A1:A2")
Set wb = Workbooks.Add
With wb
Rng.Copy

[code]....

View 4 Replies View Related

Saving Workbook And Changing File Name?

Mar 20, 2014

I've got a macro set up to copy a range of cells in one workbook, open another existing workbook, and then paste that range. So far so good.

However, I need the macro to also save a copy of that second workbook with a filename that is derived from the original workbook.

To be a bit clearer, let me give an example of how I'd like this to work. Let's say the original workbook is titled Pickle2014-03-14.Raw.xlsm, and I have a second workbook titled UploadFormat.xlsx. I want to run the macro in Pickle2014-03-14.Raw.xlsm, have the data pasted to UploadFormat.xlsx, then save UploadFormat.xlsx with the file name Pickle2014-03-14.Final.xlsx.

View 2 Replies View Related

Saving File As Current Workbook Name

Apr 10, 2007

ChDir "C:Documents and SettingssysxxxDesktopcode testNew Folder"
ActiveWorkbook. SaveAs Filename:= _
"C:Documents and SettingssysxxxDesktopcode testNew FolderBillsFileName.xlw" _
, FileFormat:=xlExcel4Workbook, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False

Here's the code. My only question is how would I change "BillsFileName.xlw" to be the name of the current workbook?

Is it something as simple as

New Folderactiveworkbook.name.xlw

View 3 Replies View Related

Saving N Worksheets From A Workbook To 1 Text File

Feb 20, 2008

I am trying to write this code where I need to save an excel workbook with a number of tabs to 1 text file with a name of users choice.

I am able to do this if there is a separate file for every worksheet within the workbook but not if we have the same text file to append every time.

View 9 Replies View Related

Merging Excel Workbooks Into Master Workbook With Separate Sheet For Each File

May 24, 2014

I have 30 xlsx files in a folder and I want the first sheet of all that files to be merged to a new workbook. The thing is I don't want the macro to copy paste the value in to the same sheet of the new master sheet like Ron's excel merge tool does. I want a macro to create new 30 sheets on the master file and copy the data from source files. And I want the newly added sheets to be renamed as the source file name. This works well except the sheet renaming thing.

Sub Merge2MultiSheets()
Dim wbDst As Workbook
Dim wbSrc As Workbook

[Code].....

View 1 Replies View Related

Can't Open File (name) XLSX?

Oct 21, 2013

I am facing this error problem in my laptop. Error: Excel can't open the file (name).xlsx because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of file.

When every i am trying to open all the excel files are giving me this error. I try many software and change the extension. But no result. Same error message is coming. Really if its not fixed i will lose too much important data.

View 1 Replies View Related

File Format Or File Extension Not Valid

Sep 20, 2013

I saved my worksheet in vba .xlsx and for some reason, when I go to the folder that it's saved in and try to open the file I get an error message saying "excel cannot open the file 'PO Acks fo 09-20-2013.xlsx' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file"

This is weird because I have another file that I save right before this that opens just fine without an error. Getting frustrating. When I go into the ~Users folder it shows as an excel file and saved as .xlsx.

Where would the link be missing?

Here is the code

Code:
ActiveWorkbook.SaveAs Filename:= _
"G:PURCHASINGSupplier ServicesGroupSharePublic~UsersPO Acks for " & Format$(Date, "mm-dd-yyyy") & ".xlsx"

View 2 Replies View Related

Added XLSX File With More Detailed Description?

May 3, 2014

I've got several huge information bloks to handle.

Would you be so kind as to give the matter a reasonable consideration?

I've added an xlsx file with more detailed description.

View 1 Replies View Related

How To Alter Fixed XLSX File To Check For Non Blank Cells

Dec 19, 2012

I have attempted to alter this example to simply check if the cells are not blank by replacing the "X" with "<>", but I get errors in the SMALL function--it looks like the IF statement is just returning an array with all of the values set to FALSE, and none of the values in the array call out a location of the next filled cell.

How could you alter your fixed XLSX file to check for non-blank cells instead of "X" specifically?

View 2 Replies View Related

Saves A Template With Macro (XLTM) As A Normal File (XLSX)

Sep 10, 2009

When I prepare a file with macro's (to be used by other people), I save this file as a template with macro's with the extension *.xltm (template with macro).
Therefore no one can overwrite my file. These other people can open this template (e.g. double-click, but not file-open). But when these people save this file, Excel automatically saves it as a normal Excel-file with the extension *.xlsx.
Ok, a message is seen after pressing <enter> or clicking Save, but does normal users know, what they have to do then?

If I'm making a template with macro's, I want Excel to have this file saved as a file with macro's. Whatever did I make a file with macro's for? Is this a bug or is it done on purpose?

View 3 Replies View Related

Add A File Extension In A Cell

Feb 18, 2009

I have a sheet I am working on that was given to me by a supplier and for example the cell in A1 is '2008_world_soccer'. How do I add '.jar' to the end of the filename bearing in mind the filenames are not the same length in each cell. So it would then read '2008_world_soccer.jar' or ''2008_world_soccer_GB_test.jar' etc. Any ideas that would saving me having to edit and type .jar at the end everytime for over a thousand records?

View 3 Replies View Related

Extracting The Extension Of A File

Dec 7, 2009

I have a list of file names in an excel sheet. The requirement is to find the extension of each file in the next column. For example
file name 123.456.789.jpg
extension jpg

file name 123.abcd.789.xlam
extension xlam

is there a worksheet function equal to InStrRev in vba?

View 6 Replies View Related

Blurry Chart When Using Camera Tool / File Becomes Non-dynamic When Saved As Xlsx

Mar 24, 2012

Description:The chart shown in the file is a picture using the Camera Tool. The real chart is in the worksheet "Chts". When using the dropdown & radio button, the chart is supposed to change accordingly.

Problem 1:The picture from the camera tool seem to be blurry. The lines also seem thicker. Any rectifications for this?

Problem 2:If I save this file as "xlsx", the chart will not change dynamically when the dropdown is changed.

2003 version

[URL]

2007 version

[URL]

View 6 Replies View Related

Open And Close File With No Extension

Feb 21, 2013

I opened a file, by file I mean a "file" with no extension that has commas separating it.

So I recorded a macro to open up the file and this works fine.

How do I close it? I tried

wk1 = ThisWorkbook.Name 'Main Worksheet
...
Workbooks(wk1).Activate
ActiveWindow.Close

But the problem is that "wk1" is not set equal to the name, probably because the file is not an excel file, it has no extension.

View 2 Replies View Related

Open File With Highest Extension?

Jun 26, 2014

I need a VBA script which only opens the file with the highest extension.

The files are test.aa1, test.aa2 and test.aa3. This can go up to 5. In this case the filoe test.aa3 should be opened.

View 1 Replies View Related

Macro To Inport WK4 File Extension

Mar 31, 2009

creating a macro that will inport file exention which has WK4 , i have lotus notes at work i have exported email file to drive U: , i require a macro to pick this file up and export to Sheet Group_Mailbox. The range is A9

View 9 Replies View Related

Add Text To End Workbook Name Without .xls Extension

Aug 24, 2007

I am having an issue getting rid of the ".xls" when my workbooks save automoatically. Here is the code i am using: ActiveWorkbook.SaveAs (ActiveWorkbook. Name & "_" & NextMonth). The program works great except it will save as something like "Example.xls_Jan07". THe only problem is that ".xls" in there is driving me crazy. All i want is Example_Jan07. Anyway of doing this?

View 3 Replies View Related

Error Opening File......different Format Than What Specified By Extension

May 15, 2009

Apparently my program quits after i try to open an excel file. If you open the file manually you get an error upon opening the file...something like this:

"File you are tyring to open is in a different format than specified by the file extension".

The problem is i am using an excel macro using VBA and once the file is opened the VBA execution quits.

The excel file turns out to be an xml file which excel can open the file and have the VBA continue running if i RENAME the file with an "xlsx" extension. The problem is that i cant ask the user to rename the file.........how do i get VBA to open the file without an issue?

View 13 Replies View Related

Copy Extension Of File Names To New Column

Jul 9, 2013

I have a column that looks like this, beginning on C10:

Code:
File Name
2316-17-312A.xrdml
2316-17-312B.xrdml
2316-17-312C.xrdml

[Code].....

I want to copy the extension of each file to a new column (File Type). How might I go about this?

View 9 Replies View Related

Custom Add In: Add The File Name Extension And Relevant VBA Code

May 21, 2007

Has anyone got the add in code? I have my own custom menu bar on my excel. But every time i want to add a new link i must go into the code and manually add the file name extension and relevant VBA code. Is there a method of just entering the file extension in a cell range and excel will automatically update or pick up or link from this location?

View 9 Replies View Related

Determine File Extension With FileSearch Method

Aug 23, 2007

I am attempting to write a macro that will open every file in a given folder, then save the files with a new file names while keeping the original file extension. The files I'm opening with excel have file extensions of ".VA", ".TOU", and ".KVA". The new file names I want to save the files with are contained in cell A1.

An example would be:
The excel macro opens file "R003890.TOU"
The macro assigns a the value in cell "A1" (B1040) to a variable
The macro assigns the file extension (.TOU) to a variable
The macro saves the file as file name variable and file extension variable (B1040.TOU)

View 9 Replies View Related

Insure Cell Value A Proper File Extension

Apr 8, 2008

I'm trying to insure that when a file name is inputted into cell "DA7" that the string ends with a ".xls" extension. I'm using "DA7" as a target and have written the following code. When executed nothing happens.

If Target.Address = "DA7" Then
Dim ta As String
ta = Target.Value
If Right(ta, 4) <> ".xls" Then
MsgBox "The file name must end with a '.xls' extention"
Target.ClearContents
End If
End If

View 2 Replies View Related

Merging / Appending Folder Of Files With File Extension?

Aug 21, 2012

I have a folder containing 1000's of files. All the files end in .txt (for example test.txt) but are actually excel files. When I go to open the files with excel I get the following warning:

The file you are trying to open is in a different format than specified by the file's extension. Verify that the file is not corrupt and from a trusted source before opening the file. Do you want to continue?

I click "yes" and it opens fine as an excel file.

I want to merge all these files one after another into one file.

View 1 Replies View Related

Have Code To Block Save But How To Keep Code In Workbook Without Saving The File

Aug 1, 2013

My company has files that are already in use. I don't know too many details about how they work, but somehow saving the file will screw it up and my boss has to go back and reset something or other to correct it. Obviously it's connected to some other software somewhere. The code below will block Save and Save-As. BUT how do I get the file to hold onto the code without actually saving the file after the code is added (since the file shouldn't be saved)?

VB:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If SaveAsUI = False Then
Cancel = True

[Code].....

View 1 Replies View Related

Saving A File Without Saving Macro

Jan 30, 2003

I have a spreadsheet that imports data, manipulates it then deletes 2 of the sheets then saves the file under a different name to the network. Is there any way to save this new worksheet without it storing the macros - so when the user open it, only the data is there and they get no prompt to enable macros?

View 6 Replies View Related

Excel Save As Should Default File Save Type To XLSX Using VBA

Aug 21, 2012

What I am trying to do is that I have an excel file with macros and it is a read-only file. In order for the user to save, I want them to only be able to save as a .xlsx file as it disables all macros. If for whatever reason, the user wants to save the file as another .xlsm file, they should be allowed but before they save, a "are you sure you want to save as .xlsm?" message should pop up.

All the options in the save as box should still be available in case they want to save in that particular format. Just that the .xlsx should be the default.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved