Format Bar Split to 2 lines?

The format bar is too tiny for my old tired eyes. In Excel one could split it into 2 lines. Can that  be done in Numbers?
Thanks
Mike

Hello Jerrold may be surprising but it may be easily explained.
The document's representation is built by the app in the standard resolution.
The operating system display a superposed zoomed layer but it doesn't send the info to the screen capture tool which continue to extract what is stored in the layer built by the application.
At the beginning the decision to replicate the main layer was taken to drop some extraneous objects  which aren't reproduced in the screenshots thanks to this feature.
If my memory doesn't fail, there is at least one third party product able to capture the superposed layers.
I guess that it would give the wanted result in this case.
Honestly I don't know if the fact that the zoomed layer is dropped is a design choice or if it's an omission.
When I will have some minutes available, I will file a report about that.
On my side, I would be unable to work without my glasses which enlarge what I look on the screen with a zoom factor somewhere between 1.6 and 2.
On the imac 21"5 it's perfect.
But it's not a valuable reason to leave other users with difficulties.
I know that some users refuse to make the effort to search by themselves but I guess that you didn't choose to have tired eyes. Now I understand why most of your screenshots display cells larger than the ones which I use : sticked to 100%.
Yvan KOENIG (VALLAURIS, France) dimanche 4 septembre 2011 22:56:53
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community

Similar Messages

  • Firefox 13.0.1 shows my menu bar split over two lines, wasting a lot of screen space. Also, my bookmarks drop-down menu in the bookmarks toolbar is now gone,

    Website title and the menu bar used to be on the same top line (I think) - or maybe the website title didn't show on the top line because it was already showing on the tab bar. But now, with Firefox 13.0.1, I have five lines of stuff (from the top, they are: website title; menu bar (File, Edit, etc.); Tabs line; Navigation toolbar/line; bookmarks toolbar) before I get to my actual webpage screen. It used to be four lines, which was tolerable.
    Also, the bookmarks drop-down has disappeared from the bookmarks toolbar - I used to have it on the far right of the bookmarks toolbar.

    Hello again,
    Getting rid of the menu toolbar, the tabs returned to the top and the bookmarks drop-down returned to the right-side of the bookmarks toolbar. I don't know how I had changed the settings - possibly my toddler fiddling with the keyboard..
    Thanks for trying to help!

  • How to display the data in PDF format : problem is splitting into 2 lines

    Hi ,
    I developed one report which downloads the data into PDF format and saved in C drive but my problem is
    in my program : Line size of the report is 255 in PDF it is splitting into 2 lines. it has to show in a single line. how to do it. how to reduce the width of the output? i am sending my code below. anybody can suggest me how to do it. if possible please send me the code.
    my code:
    report zmaheedhar.
    maheedhar-start
    TABLES : vbak.
    parameters : p_vbeln type vbak-vbeln.
    data : begin of itab occurs 0,
            vbeln type vbak-vbeln,
            ERDAT type vbak-erdat,
            ERZET type vbak-erzet,
            ERNAM type vbak-ernam,
            ANGDT type vbak-angdt,
            BNDDT type vbak-bnddt,
            AUDAT type vbak-audat,
            VBTYP type vbak-vbtyp,
            TRVOG type vbak-trvog,
            AUART type vbak-auart,
            AUGRU type vbak-augru,
            GWLDT type vbak-gwldt,
            SUBMI type vbak-submi,
            LIFSK type vbak-lifsk,
            FAKSK type vbak-faksk,
            NETWR type vbak-netwr,
            WAERK type vbak-waerk,
            VKORG type vbak-vkorg,
           end of itab.
    maheedhar-end
    DATA: pripar TYPE pri_params,
          arcpar TYPE arc_params,
          lay TYPE pri_params-paart,
          lines TYPE pri_params-linct,
          rows TYPE pri_params-linsz.
    DATA: val(1), val1(1).
    *---> Local Printer Name defined in SAP, Change NHREMOTE to your local printer
    DATA: dest TYPE pri_params-pdest VALUE 'ZNUL'.
    DATA: name TYPE pri_params-plist VALUE 'Testing'.
    DATA: i_pdf TYPE STANDARD TABLE OF tline.
    DATA: spono TYPE tsp01-rqident.
    maheedhar-start
    top-of-page.
    write: 'Sales Document' , 'C Date', 'Entry time', 'Created By','Quotation date',
           'Date','Document Date','SD document category','Transaction group','Sales Document Type',
           'Order reason'.
    start-OF-SELECTION.
          select vbeln  ERDAT ERZET ERNAM ANGDT BNDDT AUDAT
                  VBTYP  TRVOG AUART AUGRU GWLDT SUBMI LIFSK
                  FAKSK  NETWR WAERK VKORG from vbak
            into table itab
            where vbeln = p_vbeln.
    maheedhar-end
    --- Retreive local printer details
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        destination            = dest
        no_dialog              = 'X'
        immediately            = ' '
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
        valid_for_spool_creation = val1
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc NE 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *-- Set Spool printer details w.r.t local printer
    pripar-prdsn = 'DSN'.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_archive_parameters    = arcpar
        in_parameters            = pripar
        no_dialog                = 'X'
        list_name                = name
      IMPORTING
        out_archive_parameters   = arcpar
        out_parameters           = pripar
        valid                    = val
        valid_for_spool_creation = val1
      EXCEPTIONS
        archive_info_not_found   = 1
        invalid_print_params     = 2
        invalid_archive_params   = 3
        OTHERS                   = 4.
    IF sy-subrc EQ 0.
    ---> Triggers the spool creation in the sense all the write statements from hereon will be written to spool instead of screen
      NEW-PAGE PRINT ON
      NEW-SECTION
      PARAMETERS pripar
      ARCHIVE PARAMETERS arcpar
      NO DIALOG.
    ELSE.
      WRITE:/ 'Unable to create spool'.
    ENDIF.
    *--- Output statements
    *WRITE:/ 'First Line', 'mahee','lklk','kikik','lokiuj','fffff','kijuyh','fgfgfgfg','gtgtgtgtgtgtgtgtggggggggggggggggggggggggggggggg'.
    *WRITE:/ 'Second Line'.
    LOOP at itab.
    write: itab-vbeln,
            itab-ERDAT,
            itab-ERZET,
            itab-ERNAM,
            itab-ANGDT,
            itab-BNDDT,
            itab-AUDAT,
            itab-VBTYP.
    ENDLOOP.
    "---> Close spool
    NEW-PAGE PRINT OFF.
    spono = sy-spono.
    Convert ABAP Spool to PDF
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
      EXPORTING
        src_spoolid                    = spono
        no_dialog                      = 'X'
    TABLES
       pdf                            = i_pdf
    EXCEPTIONS
       err_no_abap_spooljob           = 1
       err_no_spooljob                = 2
       err_no_permission              = 3
       err_conv_not_possible          = 4
       err_bad_destdevice             = 5
       user_cancelled                 = 6
       err_spoolerror                 = 7
       err_temseerror                 = 8
       err_btcjob_open_failed         = 9
       err_btcjob_submit_failed       = 10
       err_btcjob_close_failed        = 11
       OTHERS                         = 12.
    Download PDF contents to presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = 'c:\test.pdf'
        filetype                        = 'BIN'
      TABLES
        data_tab                        = i_pdf
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22.
    thanks,
    maheedhar

    hi tripat,
    actual problem is what u said it is decreased the wiidht of the output.
    now the output is:
    Sales Document C Date Entry time Created By Quotation date Date Document Date
    SD document category Transaction group Sales Document Type Order reason
    62741 07/29/1996 11:54:38 DARLENE 00/00/0000 00/00/0000 07/29/1996 C
    actual output is:
    output should come in a single line. it is splitting into 2 lines.
    thanks,
    maheedhar

  • In Notes, I do not have a format bar. Under views there is no option to toggle this feature on or off. How then, can I set line spacing in documents? or is there some trick to getting the format bar that they say exists?

    I want to be able to adjust line spacing in the Notes program. The help menu says that there is format bar and that I can choose this spacing. I do not have a format bar. They said that you can toggle this on and off under the View menu. I have not option in my dropdown that gives me an option to show or hide the format bar. Is there a reason why my version does not seem to have this feature?

    Sorry for the wishy washy response but potential YES and possibly NO. Your user data should be intact but the OS may not be able to boot. You have a backup?

  • How do I double space a document using Pages There is NO Line Spacing control in the drop down menu in the format bar

    How do I double space a document in Pages. The instruction say to use the Line Spacing control in the format bar, but there is NO Line Spacing control in the drop down menu under Format. I'm writing a novel and I am having to manually double space after every line. It is **** when I am trying to edit my work.

    The computer is not too old (and neither are you ).   It may be better if you could upgrade it from 10.5.8 to 10.6 ... but that would not solve this problem.
    As both Paul and I have advised ... get yourself on Pages > go to the View menu and halfway down is the option 'Show Inspector'.   You'll end up with a panel like Paul showed you in his post of 08:42.   Let's see what you can do from there.

  • Format Bar inquiry

    I am new to Apple and iWorks. I just bought a used PowerBook G4 with 12.1" screen for use at school. I am using Numbers '09. Each time it opens up, the format bar is so long that it is off of the screen. Can I adjust the format bar to show the whole format bar on my 12.1" screen? Or, is that a future feature in Numbers '10? Thanks.

    Welcome to the Apple forums
    Unfortunately, the format bar cannot be edited at all, only the tool bar can.
    Or, is that a future feature in Numbers '10?
    Anyone who knows if it will be in the next version, whatever the name, is under an Non-Disclosure Agreement (NDA) & can't say. I certainly hope the ability to change the size of the icons have it wrap to a second line does happen. I suggest you leave feedback for the Numbers team regarding this. You can find it under the Numbers menu > Provide Numbers Feedback. That takes you to the same page as this link.

  • How to combine a stacked bar chart and a line graph together in one report

    I have a report in excel that has stacked bar chart and a line graph together in one report. I am trying to recreate the same in Webi, Is this possible? Did any one have similar requirement, could you please share the thoughts?
    Thanks,
    Hema

    May be I don't understand correctly...
    But if its really to separate chart area's;
    just copy the datablock and format one as line and the other as barchart...
    Hope this helps,
    Marianne

  • FM to change / split SD schedule lines in batch

    Dear all,
    Following scenario:
    Material A: Current available stock: 1000 pcs,
                Purchase Order 10000 pcs arriving on 01.09.06
                SD order with 2000 pcs.
    When I run the availability check for the SD order in VA01, the system would create 2 schedule lines:  1000 pcs today & 1000 pcs 01.09.06.
    We would like to use a batch program instead of the online availability check in order to calculate the confirmed qty. based on our rules.
    What I'm looking for is a FM / BAPI which allows the created more than one schedule line and pass the confirmed quantity, eg. 900 pcs scheduled for today and 1100 pcs scheduled for 01.09.06  .
    I tried FM SD_BACKORDER_UPDATE but it allows only to pass one quantity per item line and does not split the schedule lines.
    I also tried BAPI_SALESORDER_CHANGE but it does not allow to pass the confirmed qty. ( It changes the order line qty.)
    Any idea welcome......
    Regards
    Heinz

    Hi Heinz,
    In the sales order you can go to the Item -> Schedule lines and you can split it.
    Did you resolved if so shall i know how.
    Regards
    Agasthuri Doss

  • Need to Split Sales Order Line Item in VA01

    Hi,
      I have a requirement in which i have to split an order line item for KMAT materail number. system popup configurable screen, here all the required characteristic values have to be selected as per the customer requirement.
    After entering all the required customer specific characteristic values, system determines batch automatically. If characteristic values of the Batch matches with the characteristic values of configurable screen selected in the sales order
    Here also we have to check the sales Order Quantity (VBAP u2013 KWMENG) and order Confirmed quantity (VBEP u2013 BMENG), if the both the quantities are not same, consider order has partially confirmed.
    If Order quantity is partially confirmed, check for the batches with the same characteristic values of the quotation configurable screen and if batch found, system has to create a one more line item and new batch has to be assigned to create line item.
    Reduce the order quantity equal to the confirmation quantity in the first line item.
    Create a new line item in the quotation, copy all the remaining unconfirmed quantity from the first line item and also copy all the characteristics and properties (item category, schedule line category, business data, item data, and requirement type) and assign the batch to the new line item. System does the availability check automatically and confirms.
    In another scenario system doesnu2019t find batch, in this case capable to promise has to trigger directly.
    Here we have to check the Order confirmed quantity, if confirmed quantity is equal to zero.
    Change the item category of the line item, due to which system determines different Requirement type and schedule line category.
    Based on the Requirement type system triggers the capable to promise.
    I would lke to know which is the suitable user eixt or BADI to split the line items and what all the tables or structures i need to populate in order to create a new line item successfully.
    I have seen many post in sdn but no body gives the right user exit name where i can add new line item.
    Regards,

    Hi Amit,
      Thanks for your reply. In this scenario configurable material is involved. And first Make to Stock scenario is executed to check any material with customer entered characteristics are avialable. If its so it will determine its batch and assigned the quantity.
    If zero quantity is assigned or no quantity is assigned then I have to trigger the Make to Order scenario for rest of unconfirmed quantities in order.
    I have check it in USEREXIT_MOVE_FIELD_TO_VBAP but it was of no use. I even tried in USEREXIT_CHECK_VBAP but still no result. I am not sure what all the tables and structures i need to populate there.
    Regards,

  • Where did the format bar go? How do I change a column to currency/percentage/ etc...?

    The format bar in numbers 3.0 has been removed.  I need to change a column and/or row to either currency, text, percentage, etc... 

    Hi jshmo,
    You can do it this way.  Select the cells you want, click the Format brush upper right and this will appear in the panel at the right.  You may need to click the Cell tab.
    SG

  • Free Goods sub item split in two line items

    Sir,
    I give free good along with  sale item ,but i want free goods quantity split in two lines ,so how I do  that?
    Please help .

    Hi,
    Free goods has the following limitations:
    - Free goods can only be supported on a 1:1 ratio. This means that an order item can lead to a free goods item. Agreements in the following form are not supported: u2018With material 1, material 2 and material 3 are free of chargeu2018 or u2018If material 1 and material 2 are ordered at the same time, then material 3 is free of chargeu2018.
    - Free goods are not supported in combinations with material structures (for example, product selection, BOM, variants with BOM explosion).
    - Free goods are only supported for sales orders with document category C (for example, not quotations).
    - Free goods are not supported for deliveries without reference to a sales order.
    - Free goods cannot be used in make-to-order production, third-party order processing and scheduling agreements.
    - If you defined a free goods for variants in a generic article (only SAP Retail), you can only process the variants in the purchase order and goods receipt individually (as single articles). In other words, you cannot process them using the generic article matrix.
    Not all Sales Order can be used for free goods determination.  You have to check the SD document category if it does not work.  Only category 'C' are supported.  Check transaction VOV8.
    Assume that you want to configure an inclusive FREE goods routine.  Customers must order a minumum quantity of 5 before any free goods can be assign.  For every quantity of 3, the customer will be given 1 free goods.
    WC07 - Maintain Number Range Intervals
    e.g.
    No   From number       To number
    01    0000010000         0000099999
    IMG -> Sales and Distribution -> Basic Functions -> Free Goods ->
    Maintain Access Sequences
    New Entries
    Acsq
    NA00
    Save
    Maintain Condition Types
    New Entries
    Ctyp   Name             AcSq
    FREE  Free Goods    NA00
    Save
    Maintain Pricing Procedures
    Procedures
    New Entries
    Procedure   Description
    FREE           Free Goods
    Select Procedure FREE then click Control data
    Step   Cntr   Ctyp
    10       10      FREE
    V/N6 - Activate Free Goods Determination
    Assign Order Type OR with Document Procedure A with Procedure FREE
    VBN1 - Create free goods determination
    e.g.  FREE inclusive
    Material  Min qty   From   are free good   Calc Rule   Free Goods
                           5           3                1                      1                1
    In this example, if you create a Sales Order for a quantity of 10, SAP will prompt you 7 as the customer order qty and 3 will be free.  Customer only pay for the 7 quantity
    Hopefully this will help to resolve the answer.
    Thanks & regards,
    Pankaj Mahajan
    Edited by: PM on Apr 13, 2010 10:28 AM

  • Where is the Format Bar in 5.0?

    Where is the Format Bar in Pages 5.0?  It would also appear that some of the tools such as list styles that were formerly available are missing as well.

    You can archive (compress) Pages 5 after exporting all the files back to Pages '09.
    I suggest rating/reviewing Pages 5 in the App Store, to slowly hammer home the message to an Apple that is largely deaf to its users.
    Apple may be regretting its own reviewing system, as users tell it just how much they hate what it has done.
    Peter

  • AR - Requirement to split the receivable line

    As part of implementing OrderToCash for an international shipping company, we have a unique requirement to split the receivable line with respect to the number of revenue lines.
    Due to the accounting doc having one receivable line, we are facing challenges in applying cash and disputing at the individual line item (shipment level).
    We effectively need there to be a 1:1 relationship between a Billing document line and an AR invoice line (currently the AR receivable line is a cumulation of the Billing lines).  This said, is there any configuration or user-exit on the SD or AR side to split the receivable line (at the time of releasing it to accounting) even though it is hitting the same reconciliation account?
    Thanks,
    Anthony

    Hi Anthony
    I know that when you enter FI side invoice we can use the 'Amount split' tab on FB70 or FB60 screen after entering the total amount in the 'Basic data' tab. 
    But I am not sure how to enable it when using copy control from delivery to billing to accounting.
    Assign points if useful...
    Thanks

  • CS3 - Auto Format doesn't compact blank lines?

    In Flash 8 on OS X, using Auto Format used to remove blank
    lines. I can't seem to find a way to enable this in CS3. Is it
    possible?

    Additional three thoughts: First, is there anything I can do while still in MS Word to enable Acrobat to see the check boxes easier? Different font? Same font, but different "character"? Etc. Second, if there is no way the check boxes can be recognized and converted, is there a way to do an after-the-fact search-and-replace, searching for the check boxes and replacing them with clickable boxes. By the way, I don't need to capture data; I just need for people to be able to fill out the form on their computer and print it. Third, if Acrobat can't do this, is there third-party form software that recognizes check boxes?

  • How can I combine the nav bar and menu bar on the same line to save space?

    Firefox v29 seems to be a huge step backward in customization. I need to save space for content so previously I turned off tabs and combined the menu bar and nav bar on the same line. The url space is way too long anyway. Now with v29 all my customization is gone and I cannot get it back. I can no longer move items on the nav bar to combine it with the menu bar. Why was this done? It only limits my ability to customize my browser? I am very frustrated that you took a great browser and ruined it.

    I get it that Firefox has changed, but the change is for the worse. It makes it impossible to customize menus as I had before v.29.

Maybe you are looking for

  • Why does Flash10e.ocx cause IE7 to crash?

    An associate is having a problem when a website attempts to run Flash10e.ocx in Shockwave Flash Object.  Internet Explorer 7 is the browser being used on a computer running Windows XP Professional SP2.  I've updated to Flash Player 10.0.45.2 but the

  • Transport of Variant in Infopackage.

    Hi Experts, I have a question regarding transportation, did change to  a Variant (Message Recepient Email ID) in infopackage and DSO and I have to transport it to the Quality,  not sure shall I select Variant in the infopackage to import or shall  i

  • HT2534 since downloading the new version my icon no longer works

    Since downloading the new 10 version my icon will not allow me to load my itunes, I dont want to lose my music, vids, photos ect. Any suggestion how I can solve this

  • Chapter points

    Is it possible to set chapter points on a video that is streaming, not embedded? In other words, I want the user to be able to select which segment to watch in the video from within Acrobat.

  • HD SIZE - Tamaño Disco Duro

    [ESP] Hola he comprado mi Macbook C2D black y en teoria venía con 120 gb de disco duro pero realmente me marca 111,47GB. ¿Donde se han metido los 8,5 GB que faltan? ¿Hay alguna forma de recuperarlos? [ENG] - Sorry ,but my english aren't very good. He