Printing without a grid?

My son created a chart using Numbers. It was fine to see the grid while developing his homework, but he didn't want to see the grid when the information was printed. How do you turn off the grid as well as the A,b,c.... across the top, and the 1,2,3... down the side?
Thanks..
--Paul

There are gridlines and there are borders. Gridlines do not print but borders do. By default the tables have both. You need to select the borders and set them to none. The User's manual tells how to do it. The tools for doing it are on the toolbar and in the table inspector. Same tools, two places.
Gridlines will show up whenever the table is selected and will go away when the table is not selected. Gridlines do not print.
The column letters and row numbers do not print.
If you want to see how a page will print, go to Print View and ensure no tables or charts are selected.

Similar Messages

  • Cannot print without the GRID showing thru...

    Apparently there is no way to print an imported Excel Sheet without the GRID.
    Every sheet is imported as a single table with it's GRID showing up as a visible border. Simply, it does not recognize the difference between a GRID and a BORDER.
    The only way to get rid of the GRID, is to completely reformat the document by taking out all BORDERS and applying new ones.
    That will not work! No one is going to spend time reformatting a document that works perfectly in Excel.
    Until this is solved, Numbers will seldom be used.

    I have a 20 tab excel workbook with several printed pages on each tab that I work with regularly. It has many text boxes, borders thicknesses,and hatches. It imports just fine into numbers with a little tweeking of content scale to get it to print one page wide. I tried cahnging the color of the cell borders to white and cell borders to none. Guess what? It takes out ALL the fancy ones as well.
    I am printing and submitting these sheet to a government facility and they are not complaining (so far) with ghost grid lines, But it sure would be appreciated to have more control over the printing of these unneeded gridlines.
    I really don't want to recreate the whole thing and am trying to abandoned my addiction to excel all together.
    Message was edited by: KrrP
    Message was edited by: KrrP

  • Is it possible to connect HP DESKJET 1510 All-in-One series Wireless printer without USB cable?

    my mom recently bought me the HP DESKJET 1510 All-in-One series so i have an at home printer for school work. but when we bought it we did not know there was a certain USB that had to connect to the printer. so we bought the wrong one. now i have a project due and i cannot print. we have a small USB that fits it but its hard to connect it to the computer and printer because its so small. so if we can have it sent to the printer without the USB that would be perfect!

    Hi,
    No, in many cases printers won't come with USB cables. You need a cable which is similar to the following one:
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I grant users the ability to pause/resume printing without a "print operators group" password.

    Greetings,
    We are running 10.8.5 on 30 machines in an active directory environment (graphics lab). The clients are experiencing a persistant error when pausing or resuming print jobs. Each time something is paused, it requires an administrator password to resume the job. Administrators are not always present so designers are locked out of all of the printers until we come in (or remote in) to authenticate.
    I spoke with Apple today and they said they would not support active directory accounts and that the account must be edited by the department that created the account because the restrictions come from the Active Directory account preferences.
    On the other hand, I ALSO read that I can edit this in the CUPS interface or modify it with the terminal command below, locally.
    dseditgroup -o edit -u admin_name -p -a user_name -t user _lpadmin
    "dseditgroup" adds the user_name to a group (in this case, _lpadmin).
    And admin_name is the name of your administrator's account.
    a) Must this be modified on the Active directory account or CAN I modify this on the local machine via CUPS or terminal?
    b) If so, how would I grant users the ability to resume printing without an admin password?
    c) If not, exactly what must be modified in the active Directory account to allow pause/resume without an admin password.
    I have seen a terminal command that adds users to the print operatiors group (Ipadmin) and I have seen some info on editing the CUPS interface, If i must edit the CUPS interface to allow this, can anyone point to detailed instructions on how to make this change.
    I also saw info on editing the CUPS interface but the suggestion lacked details as to how and how to return to default if it does not work.
    I also saw a post with these suggestions below but without detail as to how one would carry this out.
    /etc/cups/cupsd.conf
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    *#Require user @SYSTEM*
    *Require valid-user*
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    *#Require user @AUTHKEY(system.print.operator) @admin @lpadmin*
    *Require valid-user*
    Order deny,allow
    </Limit>
    /etc/authorization
    +The system.print.operator key is new to Snow Leopard and seems to control resuming and pausing a printer queue among other things.+
    <key>system.print.admin</key>
    <dict>
    <key>allow-root</key>
    <true/>
    <key>class</key>
    <string>user</string>
    <key>group</key>
    <string>staff</string>
    <key>shared</key>
    <true/>
    </dict>
    <key>system.print.operator</key>
    <dict>
    <key>allow-root</key>
    <true/>
    <key>class</key>
    <string>user</string>
    <key>group</key>
    <string>staff</string>
    <key>shared</key>
    <true/>
    </dict>
    I have read all posts on this subject and I still am not clear on how to proceed, please assist.
    Thanks in advance,
    V

    Hello again.  For AD environments you can run the following command on each workstation:
    sudo dseditgroup -o edit -n /Local/Default -u localadmin -p -a "Domain Users" -t group _lpadmin
    This command assumes you are typing this interactively on the machine.  Obviously change localadmin to the Mac's local admin's name.  When running you will be prompted for password twice.  Once to elevate permissions (sudo) and once to validate you are localadmin.
    If you are using Apple Remote Desktop (or JAMF or other management suite), you can push this command out while embedding the localadmin's password. 
    sudo dseditgroup -o edit -n /Local/Default -u localadmin -P yourpass -a "Domain Users" -t group _lpadmin
    Please note, if your password uses special characters (/-\) this may fail over ARD.
    In Mavericks, AD groups are cached once they are referenced.  If you are dealing with a lot mobile users (laptops) you might want to replace Domain Users with everyone
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store

  • How Can I print directly the report from the printer without showing it ?

    I know how to run the report from Form as it illustrate on this site:
    http://www.lv2000.com/articles/runreport.htm
    but the question here how could i to generate the report directly to the printer without showing it on the screen???
    I search on the net and I find that I should change this line :-
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, cache);
    to this
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, printer);
    but it is not working with me :-(
    is there any suggest ?!

    Check if any of these helps
    Re: Direct Printing in Forms10g
    Web.Show_Document() print report directly
    Direct Printing from client PC

  • Can I print a image larger than 4x6 directly from iPad's photo application to a HP Air Print printer without a additional app?

    Can I print a image larger than 4x6 directly from iPad's photo application to a HP Air Print printer without a additional app?

    jerryone1942 wrote:
    Can I print a image larger than 4x6 directly from iPad's photo application to a HP Air Print printer without a additional app?
    It depends upon the capabilities of your printer. If you have an HP printer with a photo tray then the Photo app will print to whatever size you load in to that tray.
    There's some more information here:
    Using AirPrint to Print Various Photo Sizes
    With other printers the user is given a choice from the printer's loaded paper sizes. You can see an example of that here:
    The Many Faces of the iOS Print Panel

  • When I try and print an "Approach Plate, or Departure" from ForeFlight to my Epson Stylus NX430 using AirPrint the image is resized. How can I print without it resizing. I want to have the plate print in the original size so I can use it.

    When I try and print an "Approach Plate, or Departure" from ForeFlight to my Epson Stylus NX430 using AirPrint the image is resized. How can I print without it resizing. I want to have the plate print in the original size so I can use it. Is this an Apple, Epson, or Foreflight Issue? I just purchased the printer so I can return it and get a different model or brand. I spoke to Epson and the suggestions given did not resolve the issue. I have cut the paper down to the size of the plate roughly 5.5x8 and it still try's to print at 8.5x11. I have also requested help through ForeFlights Tech help but have yet to receive an answer.
    Please help!

    It varies based on what you ordered and whether it is in stock or has to be assenbled and shipped from China. Your email conformation should give an estimate of when the items are expected to be shipped or available for pick up if you are having it sent to a local Apple Store.

  • How can I print without color?

    How can I print without my color cartridge in my printer, I have a HP Deskjet 3510. I cant find only print in black in white in the setting on my printer.

    Hi,
    Actually we call it as Grayscale. But Grayscale is a mixture of all colors. If you only wish to print Black & White only, you need to set "Black Ink only" as default. Please try:
    The setup may vary from printer to printer but basically (for Windows):
    (a) Double click printer icon on desktop,
    (b) Click Set Preferences,
    (c) Click Advanced,
    (d) Select "Black Ink only" for Print in Grayscale
    (e) Click Ok/Apply ...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Can u print without AirPrint printer if you have a wireless printer?

    Can u print without AirPrint printer if you have a wireless printer? I have a fairly new canon printer, MP495 series all in one, and was wondering if there is anyway to print wirelessly to it or if I have to buy another printer that is airprint compatible? I also have an iPhone 4s &amp; would like tone able to print wirelessly from it also. If I need to get a new printer can you please let me know the best options available.
    Thank you for your help,
    JewelesB

    Check the App Store to see if the printer manufacture offers an app to allow you to print to that printer. If you have a Mac, you might also look at Printopia.

  • The photo print quality from my Mac to my Epson Artisan 810 is poor.  When I take the same photo files (JPEGs) to my PC to print to the same printer without even uploading them to the PC, they print brighter and crisper from my PC.

    The photo print quality from my Mac to my Epson Artisan 810 is poor.  I just purchased my iMac for my photography business in Jan. (this is my first Mac).  When I first tried printing, I noticed the quality wasn't as good as I expected it to be.  Then, I had to print 4-3.5x5s on a sheet, so I e-mailed the image to myself and opened it on my PC to print it (much easier to print that way on PC in Windows Photo Gallery - I think it's impossible to print that way in iPhoto).  That's when I first noticed that when I take the same photo files (JPEGs) to my PC to print to the same printer without even uploading them to the PC, they print brighter and crisper from my PC.
    I've already been on the phone and e-mail w/Applecare many times over this issue. We've tried creating a test user and printing from there, and we've tried reinstalling the OS.  I've tried printing from iPhoto, ImageCapture, and Preview apps/utilities, all w/the same result - no comparison to the PC-printed versions (no enhancements have been performed on the PC).
    I'm out of ideas, and so is Applecare.  They say it's most likely a driver issue b/c the printer is outdated, and that the only solution is to buy a new printer.  BUT it is a pain for me to purchase a new printer - it takes days of research due to the nature of my business and the fact that I need a printer that can print directly onto a disc.  I love this printer and don't want to have to buy a new one if I don't have to.

    englishfreak2004 wrote:
    Yes.  I've checked for updates, and the driver I installed is the same as the one on Epson's website.  I also spoke with Epson Customer Service, which was a dead end.  Apple says the problem is due to an Epson driver issue (blaming Epson), but Epson says that with the older printers, it's actually Apple who creates the driver, so the problem is actually with Apple.  Typical he-said, she-said...
    Maybe not. Probably worth checking here:
    Epson drivers for Mavericks:
    http://www.epson.com/cgi-bin/Store/support/SupportMavericks.jsp

  • Is there any way to print directly to a wireless printer without a wireless network?

    My daughter is in the dorms at a university that doesn't allow individual wireless networks and I am trying to figure out if I can print directly from her MacBook Pro to the HP Photosmart Premier C310A.  Can anyone help?

    I am currently using a USB connection, but that keeps me tethered to the printer.  Which is something I would like to avoid.  I was looking at creating an ad hoc network with the MacBook, but I don't know Apple products well enough. 
    Is there a way to wirelessly print to the printer without an internet connection?  Will an ad hoc network work? Can an ad hoc network even be done with a MacBook?

  • How to setup a canon ip2600 printer without the cd?

    how to setup a canon ip2600 printer without the cd?
    Solved!
    Go to Solution.

    Hi Santana,
    The drivers for the PIXMA iP2600 can be downloaded from the Canon USA website.  The following link will take you to the initial download page for your PIXMA iP2600:
    PIXMA iP2600 Drivers and Software page
    Once on the initial download page for your model, please do the following:
    1.  Verify that the operating system detected in the "OPERATING SYSTEM" drop-down menu is correct, and if it is not, please click the drop-down menu to select your operating system.
    2.  Next, please click on the red arrow next to the "DRIVERS" section and click the printer driver file.  When you do, another page will appear giving details of the file you are about to download will appear.  
    3.  Please scroll down on the Details page and agree to the terms of the disclaimer message to continue with the download process by clicking on the "I AGREE - BEGIN DOWNLOAD" button.  After clicking the "I AGREE - BEGIN DOWNLOAD" button, follow the instructions to download and install the driver.  The time for the download process may vary depending on the speed of your Internet connection and the size of the file being downloaded. 
    Hope this helps!
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How do i install HP deskjet 3510 printer without the disk to my laptop

    how do i install HP deskjet 3510 printer  without the disk to my laptop 

    Hi,
    You can download from the following link:
       http://h20000.www2.hp.com/bizsupport/TechSupport/P​roductList.jsp?lang=en&cc=us&taskId=135&prodTypeId​...
    Full Feature Software and Drivers is the one you definitely need first.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Re: Increasing Column Header Length While Printing in ALV Grid

    Hi
    For some column headers in a report, the translations in Turkey are more than 40 characters, because of which while executing the report in TR language, the column header is getting truncated.
    So, I would like to know if we can increase the column header length while printing the ALV Grid(OO ALV) output.
    Or else, Is there any way where we can divide the column header into 2 rows.
    Please let me know.
    Thanks and Regards,
    Vishwa.

    Jose and Sivaram,
    Thanks for replying.
    The problem we have is with the column headers, there is a limit of 40 characters for the column header in ALV reports. So, increasing the outputlen also did not help.
    Regards,
    Vishwa.

  • "The document could not be printed" without an reason!?

    Hi all,
    cant Print PDF Flattening *80% then get message from reader  "The document could not be printed" without an reason!
    Document was an PowerPoint and the PDF was created with FreePDF 4.02 and watermarked with PDF4Net.
    How can I find out what is the problem?
    Thanks
    Robert

    The default printer is set, the page setup had a printer selected; these did not change the error result. All printers were removed using the Mac OS X printer system reset and added them back. The Adobe "Repair Acrobat Installation" was also used after adding the printers. None of these changed the error result. There is no printer spool created, just the Acrobat pop up error window with "The document could not be printed."

Maybe you are looking for

  • How can I stop my lock-in results from oscillating. The low pass filter is creating artificial noise

    I am using the lock in amplifier kit and sort of sending some of the parameters manually. I choose manually the low pass filter. Now I find strange behavior depending on the filter I choose.  The lock in results oscillates in time, the higher the dB

  • Problem connect to apple tv

    cant connect apple tv home sharing.

  • Oracle 9i installtion

    hi guys, i have a query which is , i have installed oracle 9i database in xp home edition and it works. but if i switchdown and start up my pc it doesnt work. i get service error and service shows starting, it doesnt get started only. i have a second

  • How do I uninstall Lightroom 4?

    I'm trying to download and install the new LR 6 CC and notice I still have LR 4 installed. I'm trying to find the proper way to uninstall the older version. Since it's not a CC application, there's not an associated Uninstaller in the CC application

  • IPod classic not syncing because I do not have the privilege?

    My ipod will not sync with my computer because itunes says i do not have the privilege to do so. Any suggestions on how to fix this? I have synced my ipod to the exact computer before and never had a problem until now. Even after I updated my itunes