Editing Multiple Sheets

Is there a way to edit multiple [Shift-Select] Sheets in Numbers. Specifically I have a dozen individual sheets that I'm trying to adjust the margins on and print without gridlines.
I know how to do this on an individual sheet but it's rather tedious doing so across multiple sheets.
Thanks you.

Yes we may but we must use a precise protocol.
Shift-select the Tables (not the sheets).
From the Format Bar, select the menu allowing us to define the kind of line and set it to none.
When this is done, always in the Format Bar, we may select the menu allowing us to select the lines to edit. Select the cross which apply to cells separators.
If you apply this protocol, the lines will be removed in every selected tables.
If you start by the menu allowing us to select the lines, only one table will be modified.
Feature or bug, I don't know.
Yvan KOENIG (from FRANCE jeudi 18 décembre 2008 11:20:08)

Similar Messages

  • Numbers: how to edit multiple "sheets" "tables" all at the same time

    I have read earlier posts from 2004 about this topic. Hoping things have changes.
    I have 19 sheets/tables in a numbers file "Pigeonrecords.numbers". I would like to globally alter all of them a one time as new columns or rows are needed and or data that applies to all the sheets/tables. How do I do that?
    Thank you.

    You can do a few things. For instance, you can select all the tables you want to modify and you can add a new row or column to each.

  • How do I edit or enter values on multiple sheets at the same time in Numbers?  I can do this Excel but don't know procedure in Numbers.  Thanks.

    How do I edit or enter values on multiple sheets at the same time in Numbers?  I can do it in Excel but I don't the procedure in Numbers.  Thank you!

    The only I way I can think of to modify a single value and have that value change in multipl locations is to have all "the other places" reference a single cell.  There is not way without a referene to modify a set of cells simulateously.
    This may be something like what you want:
    Enter a value in the table "Original Data" cell A1 and the A1 cells of tables Ref1, Ref2 and Ref2-1 will change

  • How to subscribe the report into one excel multiple sheets in ssrs

    Hi Team,
    I have a requirement where i pull my report in one excel with multiple sheets,
    1.I have a Emp_Report where i could subscribe my report into excel format,but here i want to subscribe this into multiple sheets in one excel form.
    2.Is it possible to subscribe the two reports in one excel with mulitiple sheets.i need this also.
    please guide me hw we can achive me ,so that i can start working on that .
    am using sql server 2008R2 sql server edition.
    pls help me out for this

    Hi Ychinnari,
    According to your description, you want to perform subscription for one report or two reports into multiple sheets within a Excel file.
    In Reporting Services, when we add a page break within the report, those pages will be exported into separated sheets in Excel.
    For first requirement, subscribe one report into multiple sheets in one Excel file. We can add a page break within a group, then the report will display on multiple sheets when subscribe into Excel format.
    For second requirement, subscribe one report into multiple sheets in one Excel file. You can add one report as a subreport into the main report, then add pagebreak between main report and subreport.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to export the data to Multiple sheet in Excel

    Hi,
    How can I export the data to multiple sheets in excel using Crystal Report XI.
    Thanks,
    Baski.
    Edited by: J_Baskaar on Mar 31, 2010 8:14 AM

    One of the 3rd-party Crystal report schedulers listed at http://www.kenhamady.com/bookmarks.html allows you to burst a report so that each group at level 1 becomes a separate worksheet inside a single workbook.

  • Data download to multiple sheets in Excel without using OLE

    Hi,
    Please let me know if it is possible to download data to multiple sheets in excel without using OLE method
    I am in SRM system and the OLE methods are not working
    Please share some sample code or reference links if any
    Thanks
    SekharJ
    Edited by: SekharJ on Sep 8, 2009 8:43 AM

    Here is my code
      LOOP AT it_final INTO wa_final.
        AT FIRST.
          l_ixml = cl_ixml=>create( ).
          l_document = l_ixml->create_document( ).
          l_element_flights  = l_document->create_simple_element(
                      name = 'PO_Details'
                      parent = l_document ).
        ENDAT.
        l_element_airline  = l_document->create_simple_element(
                    name = 'PO'
                    parent = l_element_flights  ).
        l_value = wa_final-object_id.
        l_rc = l_element_airline->set_attribute( name = 'Objectid' value =
                                                             l_value ).
        l_value = wa_final-description.
        l_rc = l_element_airline->set_attribute( name = 'Description' value =
                                                             l_value ).
        l_value = wa_final-number_int.
        l_rc = l_element_airline->set_attribute( name = 'Item' value =
                                                             l_value ).
        l_value = wa_final-description1.
        l_rc = l_element_airline->set_attribute( name = 'Description1' value =
                                                             l_value ).
        l_value = wa_final-quantity.
        l_rc = l_element_airline->set_attribute( name = 'Quantity' value =
                                                             l_value ).
        l_value = wa_final-capex.
        l_rc = l_element_airline->set_attribute( name = 'Capex' value =
                                                             l_value ).
        l_value = wa_final-ser_num.
        l_rc = l_element_airline->set_attribute( name = 'SerialNo' value =
                                                             l_value ).
        l_value = wa_final-plant.
        l_rc = l_element_airline->set_attribute( name = 'Plant' value =
                                                             l_value ).
        l_value = wa_final-loc.
        l_rc = l_element_airline->set_attribute( name = 'Location' value =
                                                             l_value ).
        l_value = wa_final-bundle.
        l_rc = l_element_airline->set_attribute( name = 'Bundle' value =
                                                             l_value ).
      ENDLOOP.
      l_streamfactory = l_ixml->create_stream_factory( ).
      l_ostream = l_streamfactory->create_ostream_itable( table =
    l_xml_table ).
      l_renderer = l_ixml->create_renderer( ostream  = l_ostream
                                            document = l_document ).
      l_rc = l_renderer->render( ).
      l_xml_size = l_ostream->get_num_written_raw( ).
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize = l_xml_size
            filename     = 'c:\temp\flights.xlsx'
            filetype     = 'BIN'
          CHANGING
            data_tab     = l_xml_table
          EXCEPTIONS
            OTHERS       = 24.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Edited by: SekharJ on Sep 8, 2009 12:04 PM
    Edited by: SekharJ on Sep 8, 2009 12:15 PM

  • R12 Excel Template - Multiple Sheet Error

    Hi All,
    I am trying to Generate Multiple Sheets (Dynamic) using Excel Template eg. Dept 10, 20, 30, each department have n employees
    Output Required
    Sheet 1: Summary
    10 x employees
    20 y employees
    30 z employees
    Sheet2: Dept 10 with employee details
    Sheet3: Dept 20 with employee details
    Sheet4: Dept 30 with employee details
    I am able to achieve this using Template Viewer by using 2 sheets at design time summary and details(details will be dynamically created for each department) but when I tried to register this template in R12 it generates 6 sheets 2 for 10 dept, 2 for 20 dept and 2 for 30 dept (No Summary Sheet)
    It is not referring Column C "Sheet Name" to start from XML META DATA sheet and applying the XDO_SHEET? to both available sheets(Summary & Details).
    When I use 1 sheet it is working fine (dept 10, 20, 30.. no summary sheet)
    Edited by: SachinK on Jun 5, 2013 5:43 PM

    What has this question to do with SQL or PL/SQL?

  • Is it possible to edit multiple tables at once??

    Hello ~
    I have been searching for days now on how to edit multiple (identical) tables of the same sheet at the same time, without having to edit each table individually. With excel you could just highlight the multiple tabs that you would like to edit, and only edit the one sheet and it would change the same cells in all of the other sheets that were highlighted. Does anyone have a solution for this with Numbers? Thank you in advance!!

    Jason Baratcart wrote:
    Hello ~
    I have been searching for days now on how to edit multiple (identical) tables of the same sheet at the same time, without having to edit each table individually.
    Feature unavailable.
    With excel you could just highlight the multiple tabs that you would like to edit, and only edit the one sheet and it would change the same cells in all of the other sheets that were highlighted. Does anyone have a solution for this with Numbers? Thank you in advance!!
    If you need the feature, use XL
    You may also:
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    Yvan KOENIG (VALLAURIS, France) samedi 3 octobre 2009 10:49:51

  • Hp printer f4488 HOW TO SCAN MULTIPLE SHEET IN ONE ATTACHMENT

    hp printer f4488 HOW TO SCAN MULTIPLE SHEET IN ONE ATTACHMENT Kindly suggest if any solution are their for above subject..

    Open Preview and use its "Import From Scanner" option in the File menu. This will launch the scanning interface, which has some standard and basic scanning controls. If you choose "PDF" as the file format to save as, then you will see an option to scan all images to one file. When you do this, you will scan and edit them individually, but Preview will save them to the same file when saved.

  • Is there a way to create a table then apply it to other sheets and have it mirror changes across all the sheets? Like a sync'ed table that will be the same on multiple sheets

    I have a budget spreadsheet with a couple recurring tables. As months go by, I sometimes make changes to these tables and would like those changes to be synced across the different sheets in the spreadsheet. Is there a way to sync content across multiple pages, essentially having one true table that appears on multiple sheets?

    Abdur,
    In the sheet :: table :: cell that is going to receive the data, type an equals sign, then click on the cell that the data will come from and press Return.
    This will require that you navigate to the origin cell by choosing the proper sheet.
    Jerry

  • Editing Multiple Text layers in Photoshop CC

    Hi,
    I have a problem when tyring ot edit multiple text layers and it's really a big problem as it crops up with virtually every design I do (websites, games apps...)
    In previous versions of PS, you could select multiple text layers and edit them in bulk, so for exmaple, select a number of text layers, then change their font size (to say 20pt)... done.
    However, with CC, there seems to be some odd 'ratio' editing goign on - if  I select multiple text layers of different size and edit them (to all be 20pt, for example), it seems to just 'add' 20pt to what ever font size the individual layers were
    It's a real issue/pain for me (and I suspect many others)
    Please is there a fix or a way to switch off this 'feature'?
    So to clarrify, I want to edit multiple (often different) text layers in one go to be the same font size... like I used to be able to.
    Thanks.

    The last few times we saw this, it was due to a bug in a video card driver.
    Please update your video card driver from the GPU maker's website.

  • Excel Template with Multiple Sheets

    Hi everyone,
    I need to build Excel template with multiple sheets where each sheet should have at-least one chart.
    Thanks
    Aravind

    Hi
    Could you please explain those ways here.?
    Many Thanks,
    BK

  • Report printing in excel with multiple sheets

    Hi Experts,
         I am working in Oracle Reports 10g.  I need to print the report in Excel....
    For this i have created .JSP file and now printing in Excel(Sheet1).
    My requirement is i need to print the report in multiple sheets.
    For example if i run the departments report then the generated excel file should be as below
    (Sheet1 - HR, Sheet2 - FINANCE, Sheet3 - MARKETING, etc.,)
    How can i do this?
    Thanks in Advance.

    Hi All,
       Is this possible  Report printing in excel with multiple sheets??
    Please give solution for my above post Report printing in excel with multiple sheets..
    Thanks,
    Su.gi

  • Printing Questions - "Poster" - One image on multiple sheet of paper (to create an enlargement)

    Hello,
    Tried to find this in the archives - apologies if this has already been answered. Kindly reply with that link and I won't ask you to chew your cabbage twice...
    On my older PC, I used to be able to print an image in "poster" mode, which essentially let me print and enlarge an image by printing it across multiple pages (e.g. 4, 6, 9 pages.) Since I'm a painter, this was an easy way for me to print out an image - and enlarge it - from which I could tape the pages together to create the enlargement. I then could use that rough poster-enlargement-on-multiple-sheets-of-paper to trace on to my canvas. (And my photographer friends have already pointed out the ease of which to actually print poster size images, but I don't need that expense or hassle for my purposes. I basically want an enlargement to trace onto a larger size canvas to paint on.)
    Since I just got a new Mac, I've downloaded PSE9 Mac trial, but can't for the life of me figure out how to replicate what I used to do on my PC, granted with an older version of PSE.
    Hoping this makes sense - and hoping against hope that someone can nudge me in the right direction...
    Thanks!
    Greg
    BTW - IF this does make sense, AND I can do on the Mac or the newer version of PSE - anybody got an idea for a workaround? (Short of buying PS CS5...?)

    Juergen,
    Thanks so much! Of course you're right - and this does the job perfectly! Thank you so much for the prompt replay, explained clearly, and very helpful! You've really helped me move onto items which I've really wanted to do!
    Very gratefully,
    Greg

  • How to generate a report in Excel with multiple sheets using oracle10g

    Hi,
    I need a small help...
    we are using Oracle 10g...
    How to generate a report in Excel with multiple sheets.
    Thanks in advance.
    Regards,
    Ram

    Thanks Denis.
    I am using Oraclereports 10g version, i know desformat=spreadsheet will create single worksheet with out pagination, but my requirment is like the output should be generated in .xls file, and each worksheet will have both data and graphs.
    rdf paperlayout format will not workout for generating multiple worksheets.
    Is it possible to create multiple worksheets by using .jsp weblayout(web source) in oracle reports10g. If possible please provide me some examples
    Regards,
    Ram

Maybe you are looking for

  • Sharing iTunes library across accounts on same computer

    Hi I have just bought my first Mac. I have set up an account for me and an account for my wife but I'm wondering if it is possible for us to share the same iTunes library rather than having a lot of duplicate music. Can this be done? Thanks in advanc

  • How to continue to play iTunes even after the cover of my MacBook Pro is closed?

    I would like to play iTunes in my MacBook Pro during travel.  As it is better and safer to keep the MacBook closed during travel, I would like the iTunes to continue to play.  How is it to be achieved?

  • Installing SOA10.1.3.5 in 11.2.0.1 DB

    All, From Oracle matrix, I understand the subject combination is supported by Oracle. After installing the DB, I tried to ran irca.bat, I set up ORACLE_HOME=<DBInstallfolder>\product\11.2.0\db1_home but ends up with error ERROR: Cannot find library o

  • Clear Parameter ID Problem...

    Hi Gurus; I write a screen program(dialog). I use structure on the screen because its very easy. My structure's some field's data element has parameterId. For example Matnr>MAT , Equipment>EQN. Sometimes I want to clear my structure in runtime. I cle

  • Documenting means

    Hi Guru's,    In Support Projects        " Documenting the configuration and program modification requirements and developing specifications for customizing " Gurus what does it mean actually.    Plz tell me Gurus its also very urgent for me. Thanks