How to push cells down?

I have a row of data and need to insert four new horizontal cells. I want this to push down cells in these four columns. The only option I see is to insert a new row rather than just part of a row. Any ideas how that can be done?

Question asked and responded many time.
The Search feature is also for you !
The feature is unavailable.
In Numbers, a row is supposed to be a coherent record.
Doing what you want violate this scheme.
The only soluce is to select the cells which must move and drag them one row below.
CAUTION : this may introduce oddities if the cells use formulas or are used in formulas.
Yvan KOENIG (VALLAURIS, France) samedi 11 septembre 2010 21:43:02

Similar Messages

  • How do I move text within a cell down in "Numbers" please?

    I am trying to move text within a cell down in Pages. I use one cell as a topic and then add text in the  next row of a cell. It may seem strange to some but I have been doing it for years in Excel. Here is the best example I can give here:
    Customer
    Customer Notes
    ABC Company
    Imagine a long row of text here and I want to start a new line of text below this one without (within the same cell)
    Text would continue here but still within the same cell (I use to be able to just hit return in excel)
    Any ideas would be appreciated.
    Thanks so much! ;-)
    Thanks so much!

    Thanks so much Wayne... I spent quite a while searching for this to no avail lol.Have a great day!

  • How we can   drill-down, sorting, traffic lights,  in ALV report

    hi gurus ,
    how we can   drill-down, sorting, traffic lights,  in ALV report .
    please any one suggest that...
    regards,
    praveen

    Check the sample code for drill-down, sorting, traffic lights,  in ALV report.
    REPORT YMS_COLOURALV NO STANDARD PAGE HEADING.
    TYPE-POOLS: SLIS, ICON.
    DATA: FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: BEGIN OF IMARA OCCURS 0,
    LIGHT(4) TYPE C,
    MATNR TYPE MARA-MATNR,
    MTART TYPE MARA-MTART,
    MAKTX TYPE MAKT-MAKTX,
    COLOR_LINE(4) TYPE C,
    TCOLOR TYPE SLIS_T_SPECIALCOL_ALV, "cell
    END OF IMARA.
    DATA: XCOLOR TYPE SLIS_SPECIALCOL_ALV.
    START-OF-SELECTION.
    PERFORM GET_DATA.
    PERFORM WRITE_REPORT.
    FORM GET_DATA.
    WRITE ICON_GREEN_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'ABC'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for ABC'.
    APPEND IMARA.
    WRITE ICON_YELLOW_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'DEF'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for DEF'.
    APPEND IMARA.
    WRITE ICON_RED_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'GHI'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for GHI'.
    APPEND IMARA.
    LOOP AT IMARA.
    IF SY-TABIX = 1.
    IMARA-COLOR_LINE = 'C410'. " color line
    ENDIF.
    IF SY-TABIX = 2. " color CELL
    CLEAR XCOLOR.
    XCOLOR-FIELDNAME = 'MTART'.
    XCOLOR-COLOR-COL = '3'.
    XCOLOR-COLOR-INT = '1'. " Intensified on/off
    XCOLOR-COLOR-INV = '0'.
    APPEND XCOLOR TO IMARA-TCOLOR.
    ENDIF.
    MODIFY IMARA.
    ENDLOOP.
    ENDFORM. "get_data
    FORM WRITE_REPORT.
    DATA: LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-COLTAB_FIELDNAME = 'TCOLOR'.
    LAYOUT-INFO_FIELDNAME = 'COLOR_LINE'.
    PERFORM BUILD_FIELD_CATALOG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDCAT
    TABLES
    T_OUTTAB = IMARA.
    ENDFORM. "write_report
    FORM BUILD_FIELD_CATALOG.
    DATA: FC_TMP TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    CLEAR: FIELDCAT. REFRESH: FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Status'.
    FC_TMP-FIELDNAME = 'LIGHT'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '4'.
    FC_TMP-ICON = 'X'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Number'.
    FC_TMP-FIELDNAME = 'MATNR'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '18'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Type'.
    FC_TMP-FIELDNAME = 'MTART'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '10'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material'.
    FC_TMP-FIELDNAME = 'MAKTX'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '40'.
    APPEND FC_TMP TO FIELDCAT.
    ENDFORM. "build_field_catalog

  • How to push a chain in CPS Redwood

    1)During peak loads - the load step gets successful however the chain does not move further
    this can be handled by pushing the chain from that particular step onwards in Bw side using function module RSPC_PROCESS_FINISH. Need to know how can this scenario be handled in CPS REDWOOD.
    2)Some times due to data issues in BW side we ignore the records which has issues and push the PC forward. In Redwood side we need to know how to push the load further.
    We tried to restart using operator message from the step we want the load to start from but CPS did not respond.
    Regards
    Ramesh

    You are trying to convert a string that looks like a formula (contained in cell B2) and have the result of the formula  be calculated in cell B3, right?
    Two ideas:
    Idea 1: If you format B2 as text then enter the text =5*2*3 then change the cell format to Automatic, it will do the calculation in cell B2. You can convert it back to text to see the formula again.
    Idea 2: Use an Applescript. The Applescript would copy the string from B2, put the "=" at the beginning and put it into B3. B3 will calculate the result. You can design the script to do this for multiple sets of cells. An example is below for you to try out. If you like it we can make it so it can be started with a keyboard command. Not quite sure how we'll stop it with a keyboard command, though
    Open the Applescript Editor application
    Copy the entire script from below
    Paste it into Applescript Editor
    Open a new Numbers document
    Put a formula into cell B2
    Run the script
    When you are done testing it out, stop the script. Otherwise it will run forever.
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
              set vold to ""
              repeat
                        set vnew to ("=" & value of cell "B2")
                        if vold ≠ vnew then
                                  set value of cell "b3" to vnew
                                  set vold to vnew
                        end if
              end repeat
    end tell

  • How to merge cells in report designer

    Hello BW Experts,
    How to merge cells in report designer.
    Thanks in advance
    BWer

    Hi BWer,
    I had to check for some details from Development.
    You also need to have FEP 14 for the BI 7.x tools on SAP GUI 6.40, which was just released on Friday. You can find it at service.sap.com/swdc. In the format menu, you will now see a "Link Cells" option.
    With the link cells option, you cannot merge across row patterns. That means that you will probably have to make some changes to your report before you can merge the cells, based on what you described.
    I imagine that you started out with a report section something like the following (dashes added for formatting purposes):
    G0 Header ...
    G1 Header -
    Controlling Area
    Detail -
    Func Area
    And then moved controlling area to the right to the same column as functional area:
    G0 Header ...
    G1 Header -
    Controlling Area
    Detail -
    Func Area
    Resulting in an output that would look like:
    CA1000
    FA ABCA
    FA ABCB
    FA ABCC
    CA2000
    FA ABCA
    FA ABCB
    FA ABCC
    As shown above, these cells cannot be merged because they cross row patterns. You would instead need to move the controlling area member down to the same row as functional area:
    G0 Header ...
    G1 Header      
    Detail -
    Controlling Area    Func Area
    You can now merge these cells, resulting in an output that would look like the following:
    CA1000 FA ABCA
    CA1000 FA ABCB
    CA1000 FA ABCC
    CA2000 FA ABCA
    CA2000 FA ABCB
    CA2000 FA ABCC
    To merge the cells, you would simply highligh both cells with your cursor and then select the option from the menu.
    Regards,
    Katie

  • My accordion panels stopped pushing content down suddenly

    They were using the default behavior of pushing content down when open so the pop-out copy could be read, but suddenly stopped working and are now overlapping content below when opened. I don't want this. How can I get them to go back to the way they were?

    What's "Overlap Items Below" set to?

  • How do you shut down apps on the 5s?

    How do you shut down apps on the 5s?

    Been asked a thousand times in the past two days... look to your right under "More Like This" for related discussions.   ------->
    Or, take a look at the User Guide

  • How to put drop down in table control ?

    Hi All,
    I m writing one module pool program to edit table.
    I want dropdown to one field so that user can select the appropriate value. And also I want to save that record.
    So how to get the dropdown list and after editing that record how to save that in the database?
    Thanx in advance.
    -Umesh

    Hi Umesh,
    Please check this demo program RSDEMO_TABLE_CONTROL on how to add drop down list in table control. Also check this program DEMO_DYNPRO_TABCONT_LOOP_AT as well.
    To save to database you can code something like this in PAI.
    MODULE USER_COMMAND_0100 INPUT.
      SAVE_OK = OK_CODE.
      CLEAR OK_CODE.
      CASE SAVE_OK.
        WHEN 'SAVE'.
          MODIFY <database table> FROM TABLE <table control>.
          IF SY-SUBRC = 0.
          ELSE.
          ENDIF.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Hope this will help.
    Regards,
    Ferry Lianto

  • Ipad - how to push Exchange calendar events to iCloud account? MobileIron is used to get Exchange data -- is there an app to push the ipad version of the events to iCloud?

    ipad - how to push Exchange calendar events to iCloud account? MobileIron is used to get Exchange data -- is there an app to push the ipad version of the events to iCloud?
    There are two separate calendars on ipad (ios 7.1) one for icloud, one fo exchange. I have tried a couple of calendar apps and while they do a good job of showing the events in the app - they don't push (synch) back to iCloud. Any thoughts on an app that will take my ipad calendars and synch them to a single icloud calendar/account?
    Thanks

    Hi
    You asked about a recommendation for an app to paste a group of addresses into the To, Cc or Bcc fields of an email?
    Our "MailShot Pro" app is the only one we know of on the App Store that creates special "group contacts" in your address book which contain all your groups email addresses, but can be used just like regular contacts from most of your favourite apps. We now have nearly 50000 people using it, and growing steadily every day.
    Here is a link if you would like to know more “MailShot Pro” (itunes link).
    A free version is also available if you'd like to try it out with a small nmber of contacts.
    If you need any customer support just contact us at the website, we're always happy to help.
    Peter
    www.solubleapps.com
    Disclosure: I am the developer of this app and may benefit from its sale- (but so might you)

  • HT1305 how can i turn down the fan rpm that's between the optical drive and hdd in my power mac g5 dual 2.3?

    how can i turn down the fan rpm that's between the optical drive and hdd in my power mac g5 dual 2.3?

    Ok, I saw that error in your logic. A Dual G5 2.3 or even a Dual Core 2.3 does NOT use LCS at all. Its air cooled and if anything if the OP is experiencing this problems could be due to possible heatsink paste drying up. He might have to re-apply MX 7 or Arctic Silver.
    The only G5's that use LCS are: G5 dual 2.5 from Late 2004, the G5 Dual 2.7 from Early 2005, and lastly the G5 Quad-Core from Late 2005-end of September 2006.
    Hope this helps.

  • My computer was stolen, how can I track down a serial number?

    Hi All-
    I'm in need of some assistance.  My Mac was stolen during an apartment burglary.  It was a gift from a family member who doesn't have any type of receipt.  I apparently didn't register my Mac either, my iPad and iPod yes, my stolen laptop of course not.  My insurance company is requesting the serial number or some sort of proof of ownership.  Any ideas how I can track down the serial number? 
    Any suggestions would be appreciated!
    Thank you!

    Have the family member who made the gift contact the place of purchase if possible. Most business records of computer sales have info like serial numbers

  • How can i shut down depreciation for an Asset for few days??

    Hi Friends,
    How can i shut down depreciation of a particular Asset for few days say 5 days??
    I have done the necessary changes in Time dependent tab like checked asset shut down and in AFAMA i changed the shut dawn as YES.
    The only problem i am in is "how can i maintain the 5 days like from 10.05.2009 to 14.05.2009
    If i go to MORE INTERVALS then only From date is available over there.There is no To date opition.
    How can i maintain To Date??
    Plz suggest.
    Regards,
    Sumaya

    Hi
    Go for shut down approach. But your depreciation key should allow shut down. check your depreciation key configuration
    In asset master data
    Go to time dependent terms,
    Define the appropriate time interval for shutdown
    Set the shutdown indicator
    The system does not calculate the depreciation for the shut down period,
    The useful life of the asset will increase to the extent of shutdown period.
    When you remove the shutdown indicator, system automatically resumes the depreciation calculation.
    Regards
    Tanmoy

  • How to clear the down payment against the vendor invoice in the payment program?

    A down payment is made $25 Later an invoice is posted for $100 Now i want to Pay $75 to Vendor But the Automatic payment program  is not clearing the down payment against the vendor invoice. Could you please help how to clear the down payment against the vendor invoice in the payment program?

    Swathi,
    Need your help i have a strange situation
    1) F-48 and document posted with document no = 15..... in company code = L002 with payment block getting populated automatically
    2) F-48 and document posted with document no= 15..... in company code = Us11 without payment block and the screen does not even show payment block, I had to check this from BSEG table
    My question is
    a) How and where does this payment block is triggered through configured and how to process next steps.
    b) when I use F-48, how do we do the actual payment, is there a check printing and linking it to the KZ document or is check printing done outside the system and the KZ document type does not have any linkage.
    c) If I do FB60 for a higher amount how do we pay partial amount.
    Your response is appreciated.

  • How to push custom infotype details to Standard Log Report

    Hi Experts,
    i am using S_AHR_61016380 SAP Standard Report for Log Change Data in
    the report development. However, the standard report for logged changes
    does not capture the long term documents run for the custom infotype.
    it is only giving the logged changes for the standard SAP infotypes
    and it doesnot capture any details for the custom infotype.
    We are looking a possibility on how to push custom infotype details to S_AHR_61016380.
    Pls suggest in case you have any inputs for the same.
    Thanks & Regards,
    Kishore.

    Hello Amith,
    As u said i have created a Z program, and also i have used the following FMs.
    1. 'HR_INFOTYPE_LOG_GET_LIST'
    2. 'HR_INFOTYPE_LOG_GET_DETAIL'
    Using these FMs i am able to get log records from the standard infotypes but i am unable to fetch data from the custom infotype tables.
    Please give me any solution to read the log records from the custom infotype tables.
    Thanks,
    Kishore

  • How to create drill down report in sap query

    how to create drill down report in sap query ,

    hi,
    The pdf below gives the steps to create drill down report.
    http://www.sappoint.com/abap/eis.pdf
    also check.
    <a href="http://72.14.203.104/search?q=cache:k-SFYy_rjPIJ:www.hrexpertonline.com/archive/Volume%252003%2520(2">http://72.14.203.104/search?q=cache:k-SFYy_rjPIJ:www.hrexpertonline.com/archive/Volume%252003%2520(2</a>
    regs,
    jaga

Maybe you are looking for

  • USB3 drive appears to be detected...

    Hey all, wondered if I could have some assistance in getting to the bottom of why my USB 3.0 HDD is not working on my archlinux system... When I plug it in to a USB 3.0 slot, although it gets power, nothing appears to happen. It all works in Windows.

  • Why do i get integer values instead of decimals when selecting a mysql table through an oracle xe DB?

    Hi My company just started a new project that implies migrating every hour operational data from a mysql database located at another company to our main DB (oracle10gR2). Between these two DB, we have an oracle XE DB which contains the database links

  • Urgent: Entity Bean question

    Hi, I am using an entity beans to store and load records in a table. When I save records to the table I store them in an order of Primary key ID, but when loading the entity bean this order is not being preserved. Is there any way I can specify what

  • Best recommendataion to work with one JFrame & Multiple Jpanels(or Windows)

    Hi all, I am a bit new(bie) to Java and Gui but not new to programming. I need to write an application in using Java. The Current editor I use is Netbeans. I have a rough idea on how to write this apps, but I would like to confirm if my idea is appli

  • Trying to make jms client inside web service

    Hi i am trying to make a jms call inside a webservice but whenever i try to execute the web service it gives error with following url http://localhost:8280/axis/services/WSTune?method=setTune&r=TUNE i have deploy this service on jboss and code is wor