About 77,900 results
Open links in new tab
  1. How to do a "Save As" in vba code, saving my current Excel workbook ...

    I have an Excel Workbook that on form button click I want to save a copy of the workbook with the filename being the current date. I keep trying the the following ActiveWorkbook.SaveAs ("\\\\filePath\\

  2. How to use VBA SaveAs without closing calling workbook?

    Using SaveAs does exactly what is expected - it saves the workbook while removing the macros and presents me the view of the newly created SavedAs workbook. This unfortunately means:

  3. Run-time error '1004': Method 'SaveAs' of object'_Workbook' failed

    Aug 21, 2015 · FWIW the With block in the original code wouldn't affect things - only if it said .ActiveWorkbook.SaveAs (i.e. with a leading .) would it be treated as …

  4. How to save MATLAB figure as JPEG using saveas() without the image ...

    Apr 13, 2013 · The Matlab figure export dialog and the saveas() function lack a lot of desirable functionality. Especially, savas() cannot create a custom resoultion image which is why your results …

  5. Does Excel VBA SaveAs do anything different to File SaveAs

    Jul 11, 2023 · This suggest to me that the Excel VBA SaveAs is doing something that the File Save is (or is not) doing. I have tried changing FileFormat from xlWorkbookDefault to xlOpenXMLWorkbook …

  6. vba - How to SaveAs a new Excel file with edits without changing ...

    Apr 25, 2022 · In some prior version of Excel I used to make edits in a workbook (call it workbook A), choose SaveAs, rename the file (call it workbook B). I could then I open workbook A and find it in a …

  7. How to save a file selected in Save As dialog? - Stack Overflow

    Using the GetSaveAsFilename only gets the path of the file to save, whereas the SaveAs method actually saves the workbook. Upon some consideration, I might suggest using the SaveCopyAs …

  8. javascript - How to use filesaver.js - Stack Overflow

    var bb = new BlobBuilder(); bb.append("Lorem ipsum"); var fileSaver = window.saveAs(bb.getBlob(), "test_file"); fileSaver.onwriteend = myOnWriteEnd;` However blobbuilder.js has been deprecated and …

  9. How to save a figure in MATLAB from the command line?

    Aug 28, 2012 · When using the saveas function the resolution isn't as good as when manually saving the figure with File-->Save As..., It's more recommended to use hgexport instead, as follows:

  10. Angular: Save file with SaveAs file dialog - Stack Overflow

    May 26, 2022 · All I need is to save blob object to file with opening SaveAs file dialog, so the user is able to change file name before saving it. Is there any library/module that allows me to do it in Angular?