Excel printed to Cutepdf writer

I have an excel document with a graph.   When I print the document to CutePDF writer and open the PDF with Adobe reader 8 or 10.1.4 the graph its just a blank sheet.   Text works fine.   Has anybody advise, please?

Hi,
Before you print your excel sheets, you can add a function to convert your excel sheet to PDF files. The following code that you can referred to :
Sub ConvertSheetToPDF()
Dim fileName As String
fileName = Application.GetSaveAsFilename(InitialFileName:="", _
                                         FileFilter:="PDF
Files (*.pdf), *.pdf", _
                                         Title:="Select
Path and FileName to save")
    If fileName <> "False" Then
        With ActiveWorkbook
                .Worksheets("Sheet30").ExportAsFixedFormat Type:=xlTypePDF, fileName:= _
                    fileName, Quality:=xlQualityStandard, _
                    IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
        End With
    End If
End Sub
Best Regards
Lan
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Cannot Open File In Reader 9 After Using CutePDF Writer

    After using CutePDF Writer to output a file from the print screen of Adobe Reader 9.0, I am unable to open it.  I get the error "Adobe Reader could not open 'filename.pdf' because it is either not a supported file type or because the file has been damaged."
    The file shows a Reader icon, but when I view it under Properties, it shows the file size as 0 kb.  Something went wrong on export...
    The file was created using Acrobat Pro 9.0.

    metaphiz wrote:
    After using CutePDF Writer to output a file from the print screen of Adobe Reader 9.0,
    The file was created using Acrobat Pro 9.0.
    You either used Cute or you used Acrobat. Which one?
    If Cute was involved and the file shows 0kb, then it's a CutePDF issue. You'll want to talk to their people about it.

  • Can I download and use the cutePDF writer on MacBookPro running Lion?

    Can I download and use the cutePDF writer on MacBookPro running Lion?

    cups pdf is like cute pdf but for mac
    https://bitbucket.org/codepoet/cups-pdf-for-mac-os-x/downloads
    after installing you need to go to settings, printer, add printer
    full instructions here
    http://basics4mac.com/article.php/print_to_pdf
    pdfs go in /Users/Shared/CPS-PDF/{your account name}
    This creates a virtual printer just like cute pdf does. This allows pdfs from applications that do not use the mac print interface

  • Excel printing of web template

    Hi,
    I am in version 3.5. I tried to implement SDN How-To paper "How to Web printing Quickstart in SAP Netweaver ;04". Applied transports, and used ZWT_ADHOC web template to launch a report.
    When i try "Excel Printing", it doesn create bookmark URL, but nothing happens afterwards
    http://<server>/sap/bw/BEx?SAP-LANGUAGE=E&BOOKMARK_ID=48Z3ROGD8LEWRSC25UL6L35L2&device_class=ZXLS&format=XLS
    Anybody can help on this pls.
    Rgds
    KT

    Hi,
    Any inputs on this...
    If i copy the URL and launch in a new IE window, it works. But i cant able to launch from the report web template.. Any ideas..
    Rgds
    KT

  • Exporting Crystal Report data to the Excel Print Headers

    Hello everyone.  I am trying to do something with Excel headers that is a little more advanced than the usual.  I have multiple reports that are designed to export to Excel.  Normally I only export a report header.  However, I have a customer who wants a label to appear in each page header and footer in Excel. Here is the catch - they want the label to appear in the Excel print header and footer, not just on the main excel page.  The label contains an SBU marking, so there is a requirement that it gets printed on every page.
    If you are not familiar with the print header, it is a separate section of an Excel document that appears when you print the excel document.  For this operation, I don't think I can use the built-in Crystal Export options.  I have tried to Export to Microsoft Excel and I can send the page header and footer to the Excel data sheet, but not to the print header/footer. 
    Thanks for your help!
      - David

    Hi David,
    I haven't worked with Excel's headers and footers but you are correct that Crystal can't export to those sections.  I have though had to make modifications to an Excel file after exporting and I believe you will need to do something similar to what I did.
    After I exported the report to Excel, I had a program I wrote that opened the Excel file and modified it.  In my case I just had to encrypt it, zip it up and email it.  You may need to do something as well outside of Crystal and Excel.  Crystal doesn't export to an Excel template so automating it in Excel wouldn't work.
    Good luck,
    Brian

  • Use desformat=spreadsheet output Excel,print percent setting not 100%,why?

    In version 10.1.2
    use desformat=spreadsheet output excel,
    Open the excel file,and print view,the print percent lower 100%,
    how to set report file,make output excel print view 100%?
    thanks for any help!
    lind

    Be sure you put the heading the same size as your column because otherwise it will not insert the diffent columns in seperate columns in excell

  • Excel printing slow

    Hi all,
    I'm using Macbook 2.53 with Snow Leopard 10.6.4. Everything is fine except MS Excel printing slow and after printing, I have to close then re-open the file in case I need to modify something in that Excels file because the printing job cause the very slow moving, select... Is it the common problem of Mac or particular mine? How to solve that problem? Please help. It's MS 2008 for Mac, was installed by dealer.
    I used many printer like HP, Canon... and it's also slow on printing preview. The printing preview quite small and can not adjust Margin like in Windows?
    Thank for any help!
    null

    Dummy post

  • Application Build Failure on Excel.Print Report call

    Developing software in LV2009 that uses Report Generation Toolkit to read/write from Excel templates. Program runs fine in development mode. AppBuilder crashes on *.exe build when adding NIReport.lvclassrint Report.vi
    Digging down, I find a broken run arrow on the NI_Excel.lvclassrint Report.vi as shown here:
    According to the Show Errors dialog, there is an unwired or bad terminal on the PrintOut invoke node; however I have not made any changes to this shipping VI (that I know of). I did try wiring all the unused inputs (empty strings to From, To, and PrToFileName; false booleans to Preview, PrintToFile, and Collate) after I ran into the error, but that had no luck either. Also tried inserting To Variant conversions for all input elements, just in case there was a problem in the implicit data to variant conversion.
    I have also tried a ctrl+shift+run compile of the whole application, but that doesn't seem to get it to un-break, either.
    Has anyone run into this problem before? It's weird that it would just break like that--I had actually compiled this particular executable before, using pretty much all the same Report Generation Toolkit VIs that I am using now. The only difference since the last build was that I replaced a Report.SaveAs function with a Report.Save function.
    Also of note: I have included all the Report classes in my project and build specification in order to compile the dependencies into support libraries to minimize the number of labview files included with the executable distribution. This is probably why an error with the Print Report.vi calls is crashing the AppBuilder even when I don't explicitly call that VI anywhere in my code.
    Solved!
    Go to Solution.

    Hey Guys,
      I know this post if kind of old but I hope maybe one of you can help me out.  I'm using an invoke node similar to what is above to print out an Excel spreadsheet to the default printer.  My issue is that when I try to print from the spreadsheet from the executable, the executable crashes.  I know it is that invoke node. The reason why I say that is because until recently I had two development computers, one running on Windows 7 LabVIEW 2010, and one running on Windows XP LabVIEW2010.  The original .exe was built with the XP machine, when I tried to make some changes with the Windows 7 machine and open the project it would say that there was a missing connection to the invoke node even though I did not touch that part of the application. I would then remove the invoke node, add it again and it would clear the error for whatever reason. I would then build the .exe with the Windows 7 machine and when it would run, the application would crash at the point where it goes to print the spreadsheet.  I got around this by building the .exe with the Windows XP machine, and it worked fine without any issues. However, my Windows XP machine cra**ed out so i'm no longer able to build the .exe on the XP machine .  I needed to make some changes to the .exe not anything involving this section of the code and for whatever reason when the application goes to print it crashes.  I get some criptic crash report from Windows that is pretty much useless.  I think its a Windows thing. This was workign correctly though until I did a build on the Windows 7 machine.
    Attachments:
    Printout Invoke Node Excel.png ‏70 KB
    crash1.png ‏22 KB
    crash2.png ‏23 KB

  • Excel Print preview stopped working and when save as pdf, pdf is blank

    mac 10.5.8
    excel home and student 2011
    i was working on 2 documents for our accountant.
    created one in excel, converted to pdf
    created second one in excel, converted to pdf
    there was maybe a 30 minute time lapse between these 2 files...tops
    the first file does in fact have a print preview, and the pdf opens and is viewable.
    HOWEVER, on the second file, there is no print preview, and pdf is blank.
    (although the printer does in fact print the file with all the words and whatnot on it...)
    blank pdf prints blank.
    i tried xlsx, and xls to pdf, and nothing works.
    it seems that all of the files created before this troublesome one can be converted and seen in print preview....even if i add a new sheet to the workbook, that works just fine...can print preview and convert pdf no problems.
    now, when i try to do that with the second file, or any new excel doc, i canNOT convert or print preview....everything is blank.
    one minute it was working, the next it's not.
    it works for some excel files while not working for newer ones.
    nothing was changed in preferences for excel, preview, or the printer, unless i accidentally typed a keyboard command that would allow this to happen.
    i REALLY need to be able to convert excel to pdf!  and i really don't want to have to print them out just to scan them in and save the scans as pdf...not fun.
    i have been researching, or trying to research this here,and it seems that there is a known bug for office 2008, or for a different OS, but none of the work arounds for those issues are helping me here!
    someone, please help me get my save as pdf back!!!!

    Try different page setups and layouts.  Reinstall the Office fonts, or check for new patches from Microsoft.     Check in Microsoft Office forums.   Mind you PDF from preview and print are not as complete as Adobe Acrobat Pro, and are based on open source PDF standards.  I don't know how well the standards were at the time your Office application was written, or if 10.5's PDF standard was up to Office's snuff, or if you updating to the latest available Adobe Acrobat Reader  and Plugin will help, but between Office's and Adobe's forum you may be abl eto find an answer.

  • 2010 Excel print preview moves checkboxes

    Good day, we have recently received new Sony Vaio's with 64x arch and 2010 microsoft office 64x. In some of my excel workbooks i have check boxes that when checked shade the corresponding cell, in office 2007 it worked great.  But now when I select
    multiple tabs to view in print preview(with a ricoh printer as the default printer), the checkboxes in SOME of worksheets move to the left and up, and changes the layout on each worksheet after you exit the print preview, (the check boxes move to the left
    and get smaller),basically ruining the document and if I do a print preview with Adobe PDF as the printer it does not ruin the layout.
    Can anyone help with this issue. Ricoh has had me change to lanier drivers and still nothing has helped yet.

    I have the same problem. 
    I tried all of the suggestions above (unhide objects, repair, hot fix and printer drivers) and these did not work. 
    The only way to fix the problem for me was to move back to Excel 2007 (with service pack 2). 
    This fixed all the problems I was having.  I have provided some detail below about the problem and what steps I took to analyse and fix in the hope that this may help resolve the problem in Excel 2010.
    Background:
    I have a spreadsheet originally created in Excel 2002. 
    It contains a number of List Boxes, Scroll Bars and Drop Down boxes. 
    On upgrading to Excel 2010 and converting the file to an .xlsm I encountered a number of problems with these controls, including the problem described above. 
    Note, I upgraded straight to 2010 not via 2007.
    My development system is Vista, Office 2010 and a Cannon MP830 printer.
    The problem:
    As described above if I do a print or print preview the controls get smaller and move left. 
    Each time I repeat the print or print preview the size gets smaller and the controls move further left. 
    I also have two controls that move significantly upwards (as they are well down the sheet), suggesting that the movement is actually proportionally up and left (each time I do a print or print preview).
    I tried the suggested fixes above (unhide objects, repair, hot fix and printer drivers). 
    None of these fixed the problem.
    Observations:
    1) This problem only happens if I print or print preview with more than one worksheet selected. 
    If I print or print preview with a single worksheet, the problem does not occur.
    2) 
    I tested the same spreadsheet in Excel 2007 on a different machine (running XP 2002 SP3 and a different printer) and the problem did not occur.
    3) 
    I tested the spreadsheet on a different system running Excel 2010 (XP 2002 SP3) with a different printer and the problem still occurred.
    4) 
    I removed Office 2010 from my development machine and installed Office 2007 and this fixed all problems (see other problems below). 
    I also needed to install service pack 2 for Office 2007 as 2007 had a known problem handling .xlsm files containing macros. 
    Without SP2 the spreadsheet stopped working totally as the macros were disabled by Excel. 
    SP2 fixed this problem.
    The above clearly suggests that this is an Excel 2010 problem, is not a problem in 2007 and does not seem to be OS or Printer dependent.
    Other problems:
    Just to complete the story, the other problems I had with controls after upgrading to 2010 are:
    1) Some of the Scroll bars and Drop Down Boxes gained a shadow. 
    This did not happen to all just some.  I could find no way to remove the shadow and had to delete the control and create fresh controls. 
    The controls did not have a shadow in the 2002 version.
    2) 
    When selecting an item from within a list box, the border of the list box moves slightly (like a nudge). 
    It returns to its original position but the move looks strange. 
    This movement does not happen if the zoom for the sheet is set at 100% but any other zoom shows the movement. 
    I have not been able to fix this other than to keep the zoom at 100% (a work around). 
    This problem does not occur in Excel 2007.
    I hope this helps with the analysis, understanding and resolution of the problem as I am struck and will have to revert to 2007 if this problem cannot be resolved in 2010 (and
    will need to advise my clients to stay away from 2010).

  • Excel printing looks out of alignment

    All in One C410A. Print works fine in all programs except MS Excel. My printouts look like the printheads are out of alighnment; both vertical and horizontal depending on the file. This did not happen until I moved to the C410. My old C309 the print was perfect.

    I am having the exact same issue with my 410; it looks as though the printer heads are out of alignment.
    Has anyone seen a sollution? It occurs in the middle of the page but only in Excel.

  • BEx Map in Excel: Print only result area

    Hi experts,
    I am in BEx Map - Excel, and I am trying to print the result area ONLY, without key figures, legend and so on...
    Print Preview in Excel shows the key figures on the left, the legends on the right and a little version of the map (as if way too zoomed out) in the middle.
    I know there is a post dedicated to the "print only result area" but its solution is "web only"
    Thx,
    Olivier

    Arun,
    Attaching a map in BEx-Excel is different from attaching a chart. When attaching a map, you can't choose in which sheet/workbook the map will be displayed. A new sheet is automatically added to the workbook holding the BEx query, period.
    But thx anyway. I did try your thought

  • Excel Print Preview and printing problems

    After upgrading to Leopard, I get a blank page (same when I print) and MS Excel spreadsheet. Anyone else have this issue and what is the solution? Microsoft web site indicates an issue but there updates this month didn't do anything (same results).
    Thanks for any help,
    Marty

    Thanks for the advice here. I've had the same problem using Excel to print to a Brother MFC-440CN printer. Used the workaround described above, but also selected 'Options' in Page Setup and then selected 'Format for Brother MFC-440CN'. Changed the print resolution to 600 dpi and was then able to preview & print. However, the document had to be reformatted to print in landscape, not portrait. Glad to hear that MS are working on a fix as this could be a real pain if it continues too long!

  • Export webi report to excel print on 1 page

    is there anyway in BO for a webi report when exported to excel to automatically print on one page?
    THe work around is to set the print area in excel itself wondering if it can be done in BO itself
    BO Edge XI 3.0
    SQL 2005

    Hi Dennis,
    BO usually prints documents the way they appear in PDF format.  Hence, if you would like the report to be printed on 1 page, make sure that the report fits into 1 page in the PDF layout (Page Layout) mode of the report.
    Regards,
    Srivatsa

  • New Ipad app supporting excel, printing and email.

    I am an agent/rep and I have a Excel spreadsheet as an order form. I need to enter a customers order while I am in their shop then print it via bluetooth and also email them their copy while I am in their shop (possible no internet or 3g network).
    What is the best app to get for compatibility of Excel which supports editing the file and emailing and able to print? The spreadsheet doesn't have any complicated formulas, just basic adding up.
    Does anyone have any ideas? Numbers, Office2 HD, Quick Office HD, Documents2Go? I don't know where to start, and don't want to waste money on an app which doesn't do the job.
    Thank you.

    Are you saying then that with Numbers or Office2 HD they will both support my needs as far as importing, editing, saving then emailing.
    Yes, any of them would work for such basic use. You'll want to read the feature set to see if any of them would offer additional features or options that you might find userul.
    it would be great if they could do a digital signature on the screen which would prevent the need to print a copy for them to sign. Do you know if any of the applications have this feature?
    I can't say with certainty that none exist, but I don't know of any of the Excel-compatible editing apps that also offer pen input. You might be able to do this in a sort of "two step" approach using one of the editing apps and an annotation app such as DocAS:
    http://itunes.apple.com/us/app/docas-annotate-pdf-take-notes/id437110885?mt=8
    Without using Dropbox or a similar service, though, I don't know how the passoff between the apps would or could work.
    Rather than using Excel spreadsheets, you might look into a database-type application such as FileMaker Go or an invoicing app. You might find something that would do what you need in a single app.
    Regards.

Maybe you are looking for

  • Purchasing Document Open Interface Error - Blanket Purchase Agreement

    Hi all. I have a problem creating a blanket purchase agreement through the interface. What i did was this: INSERT INTO po_headers_interface (interface_transaction_id, batch_id, interface_source_code, process_code, action, group_code, org_id, document

  • Second MAC computer as remote Airport Speaker for iTunes?

    Hello all, On our MacBook, iTunes is playing all our favorites. Does anybody know whether it is possible to set up another Mac in the same Network as a remote speaker for iTunes? I know about AirFoil but I would prefer something like the "client part

  • Apple Ram Upgrade

    So I have a MacBook Pro which uses the same type of Ram as the mac mini. It has 4 gigs but i am planning on upgrading it to 8. So i was wondering if someone at apple could upgrade a mac mini with my old ram and if so how much would it cost.

  • How to get the ACCOUNTING_FLEXFIELD Name  in a Multi Ledger Instance?

    Hi, How to get the <ACCOUNTING_FLEXFIELD> Name in a Multi Ledger Instance from logged-in Responsibility? Is there any profile option available? SELECT id_flex_num INTO l_structure_num FROM apps.fnd_id_flex_structures WHERE ID_FLEX_CODE = 'GL#' AND ID

  • Check in Similar not populating custom metadata value set by global rule

    I have created a global rule to set the default value for custom metadata field creation date as current system date.This rule is working fine for normal check in but when i am using check in similar functionality of ucm the creation date value is ge