Concatenate all data in one row to all data in the next row

I have been trying to do this, I'm sure simple procedure, with no luck
Table
A B
1 5
2 4
3 3
4 2
5 1
and put all the data from each row into a single cell to look like this
Table
C
1:5, 2:4, 3:3, 4:2, 5:1
I imagine I need to use some kind of recursive formula but not sure how to do that in Numbers

hoshi,
in C, fill with: =A&":"&B
Very simple.
By the way, nothing recursive will work in Numbers. An error message will be generated if the result of a particular cell depends in any way upon its own content.
Jerry

Similar Messages

  • Can I use action build to fade one table row as I move to the next row in the table?

    I have built a table with 6 rows.  Right now,I am building the table row by row when I play the slide. Is there a way to fade or dissolve one row when I move to the next row in the table? I want to be able to de-emphasize the row I just discussed when I move to the next row in the table. I can fade the entire table by invoking that action but I do not seem to be able to use this action one row at a time. Thanks for your comments and assistance.

    you will have to use a workaround to get the exact effect you described
    create a table with out any text
    use text tool to add text and position in each table cell
    select the text boxes( command click) in the first row and group them (arrange > group)
    use a, build in, to display text and then a, build out, to remove it
    repeat the above for the other rows

  • I don't have very much space left on my iCloud backup. I had a previous iPhone, my current iPhone and my iPad that are all connected to one cloud. Can I delete the backup from my previous iPhone? Will it delete in the cloud AND on the phone?

    I had a previous iPhone, my current iPhone and my iPad that are all connected to one cloud. Can I delete the backup from my previous iPhone? Will it delete in the cloud AND on the phone? or does it just delete from iCloud? or does it just delete from the phone? Someone please help!

    You can delete the backup without any problem. Only the backup will be deleted from iCloud and nothing else will be deleted, so you can do it without worrying about losing data on iCloud or your devices

  • Copy a certain row of data into the next row in a same internal table ??

    HI, guys.
    May i know how to copy a certain row of data into the next row in a same internal table ?? Bcz I plan to update a certain colum of data in the row just now into another value..
    For example:-
    *at first...
    ebeln1   ebelp1   xblnr1
    ebeln2   ebelp2   xblnr2
    ebeln3   ebelp3   xblnr3
    *after that, become...
    ebeln1   ebelp1   xblnr1
    ebeln2   ebelp2   xblnr2
    ebeln2   ebelp2   xblnr4
    ebeln2   ebelp2   xblnr5
    ebeln3   ebelp3   xblnr3
    Thanks in advance.

    hi,
    If you have this kind of requirement then you must be having 2 internal tables ,one existing data and 2nd from which you have to insert the records into 1st table.
    so in this case,
    loop at itab1.
      v_index = sy-tabix.
      loop at itab2 into wa where pri_key = itab1-pri_key.
      v_index = v_index + 1.
      insert  wa into itab index v_index.
      endloop.
    endloop.
    Using this code ,your data records similar to your 1st tables primary key records will get inserted into table.

  • Can any one tell me how to change the current row header in FB1LN tcode

    Hi,
    can any one tell me how to change the current row header in FB1LN tcode.
    I want to show input date also in the layout.
    Regards
    Mave

    Hi
    I know two ways:
    - transaction obvu: here you can insert new fields, but only if these fields are included in certain table (like BKPF, BSEG, BSIS.....
    - if your field isn't included in those table, you have to modify the structure RFPOS and manage it in the BTE 1650. After updating RFPOS you have to run the program RFPOSXEXTEND to update the structure RFPOSXEXT.
    Max

  • Sometimes after creating an event folder on iPhoto, all my pictures in that event will be gone the next time I open iPhoto. Why is this happening? Is there a way to retrieve the missing photos?

    Sometimes after creating an event folder on iPhoto, all my pictures in that event will be gone the next time I open iPhoto. Why is this happening? Is there a way to retrieve the missing photos?
    Most events I make on iphoto will still be there the next time I open iPhoto, while other event FOLDERS will be there, but pictures in it gone.

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Problems copying a row and pasting it in the following row

    Hi all,
    In a Numbers table I have 400 rows with data separated each one by a blank row
    row 2 has data
    row 3 is blank
    row 4 has data
    row 5 is blank ... and so on.
    I have prepared a small script to copy row 2 into row 3, row 4 into row 5,... as follows:
    set dName to "Conta"
    set sName to "Movis"
    set tName to "Pruebas"
    set row_ini to 2
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    set selection range to row row_ini
    repeat
    if value of first cell of selection range = 0 then
    exit repeat
    else
    tell application "System Events"
    keystroke "c" using {command down}
    keystroke return
    keystroke "v" using {command down}
    end tell
    tell first cell of the selection range to set rowNum to address of its row
    set selection range to row (rowNum + 1)
    end if
    end repeat
    end tell
    The idea is:
    1 select the initial row (in this case row 2)
    2 check if the value of first cell of the row is cero, then exit the repeat loop
    3 else
    4 copy the entire row, move down a row and paste.
    5 move to the next row
    6 repeat
    The first time I run the script it worked until the row 124 and stopped. I tried again changing the inicial row and it worked only for 7 rows. The third time it erased all the cells with data. I've tried closing both the table and the script but the problems persists: in this case it stops after replacing 5 rows.
    Where am I wrong?
    Thank you in advance
    Ratz

    KOENIG Yvan wrote:
    There is not such a book.
    There is just on short chapter dedicated to iWork in :
    Hanaan Rosenthal & Hamish Sanderson, Learn AppleScript: The Comprehensive
    Guide to Scripting and Automation on Mac OS X, Third Edition, Apress (2010);
    ISBN 978-1-4302-2361-0
    You may find useful infos in my idisk :
    <http://public.me.com/koenigyvan>
    Scan the contents of the folder :
    For_iWork:iWork '09:for_Numbers09.
    I guess the problem is for using the tell application block without telling the process Numbers.
    No, I had to change a lot of things.
    the name of the document was wrong (at least on my machine on which I always use the name extension.
    set selection range … was wrong.
    Yvan KOENIG (VALLAURIS, France) dimanche 20 février 2011 23:02:35
    Thank you.
    Visiting your idisk I realise how much work I must do to become a decent scripter!
    The book you mention looks interesting. I'm going to include it in my bookcase (and read it, of course).
    Ratz

  • How to find the average of table row values it should display in next row in libwindow/​CVI

    Hi,
    How to find the average of table row values it should display in next row in libwindow/CVI
    Please let me know the solution.

    There isn't a built-in function to perform calculations on thable cells. What you can do is to retrieve thable cells values and calculate the average by yourself.
    To retrieve a bunch of cells in a single instruction you can use GetTableCellRangeVals: prerequisite for this function to work correctly is that cells are all included in a Rect structure (shortly, a rectangle) and are all of the same data type. See the help for the function for some explanations and the link to an example of its usage. In Cell range parameter you can pass VAL_TABLE_ROW_RANGE (row) macro to retrieve an entire row. See here for details.
    Once you have retrieved cell values in an array, you can pass it to Mean function to calculate the average.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Linking image to image causes image to jump to the next row down.

    I am doing a simple website.
    I have images three across, edge to edge, on my index page.
    When I add a link to any image, the one or two images following it in the row jump down to the next row down.

    Dear John,
    Thanks for response.
    I added your code as best I could but no difference.
    The same thing is happening even when I hyperlink text.
    All the best,
    Clifford

  • Some of the data for same records is going on to the next page in excel??

    Hello,
    I designed a template in word with page setup orientation to Landscape, to get the Excel report output. Later when i preview the same in Excel with the Landscape page setup..the print preview is showing me with some of the data going out of the page set up.My font size for data in word I put is 8pt Times New Roman.
    Basically..my requirement is to print the report in excel with the landscape page setup.
    But some of the data for same records is going on to the next page in excel??
    How do i prevent this from happening?
    Thanks in Advance!

    Hello
    The blog suggested above is to set the output for a PDF document using RTF template. Whereas, my requirement is to get a excel output using RTF template, with data fitting directly with in the landscape orientation of EXCEL when printed.
    Basically, the requirement is : When i run the report, the excel output should be sent to a printer with style 'Landscape' from apps?? But the problem is that i am not getting all the pagebreaks i put in the RTF template and also some of the data for the same records is not fitting in to the landscape orientation of the excel while it gets printed.
    But when i run the same as a PDF everything is fine... ..But that's not my requirement...Please help!
    Thanks,

  • A friend gave me an iPad 1 last week. Messaging works one day and won't work the next. Any suggestions?

    A friend gave me an iPad 1 last week. Messaging works one day and won't work the next. Any suggestions?

    Hi,
    I have the same problem. I've been trying everything; opening ports, adjusting quicktime streaming preferences...everything discussed in other posts in this forum regarding error -8.
    I really hate iChat...I think it's unbeliveble that Apple claims to be so better that Windows, but I never had problems wits MSN video.
    But let's try to solve this irritating issue. What kind of messenging software do you have instaled/open when you try to use iChat?
    I have Skype installed. When I deinstalled it, everything was working fine (so I thought). Next day the same BS all over again.
    I could use skype to videochat, but I have an .mac account and I want to use iChat...the f&^%$*g .mac account is to expensive not to use...And do not forget that iChat AV quality is way better than Skype.
    I really hope Apple comes with a solution soon.
    Greets from an unhappy iChat user.
    MacBook C2D 2.0GHz, 2.0Gb, 200 Gb, Bluetooth Mightymouse   Mac OS X (10.4.8)   iMac CD 1.8GHz, 2.0Gb, 160Gb
    MacBook C2D 2.0GHz, 2.0Gb, 200 Gb, Bluetooth Mightymouse   Mac OS X (10.4.8)   iMac CD 1.8GHz, 2.0Gb, 160Gb

  • Getting the Next Row Values while on the current Row

    Hi All
    I am Using JSP/STRUTS/ADF
    I have a problem where i need to check the value of a column in the next row using a <c:if> tag
    Ie
    Here is an example of the table structure
    Row WeekNo Value
    1 4 20
    2 4 30
    3 5 10
    4 5 10
    now i need to check the value in row 2 while i am printing the value from row 1.
    i use a <c:forEach
    <c:forEach var="Row" items="${bindings.DeliveryGrowersReportView.rangeSet}">
    <c:out value="${Row['Dayno']}"/>
    <c:out value="${Row['Value']}"/>
    </c:forEach>
    So basically when displaying The DayNo i need to check if this dayno is the same as the next dayno.
    so that i can do something.
    Please if anybody has andy sudgestions.. help would be greately appreciated..
    Many Thanks George

    George,
    I've answered this question over on my blog.
    http://radio.weblogs.com/0118231/2004/11/19.html#a439
    Thanks.

  • Evert ime i close a pdf i get the following message - rthe orgnizer data base is damaged and will be reset the next time acrobat is launched but after relaunching i still get the same message

    every time i close a pdf i get the following message - the orgnizer data base is damaged and will be reset the next time acrobat is launched but after launching
    i still get the same message

    You must be using an old version of Acrobat as Organizer hasn't been in the last two versions of Acrobat.  Here is the KB that covers that old error:  Error "The Organizer Database is damaged and will be reset..." | Acrobat 9

  • How can I customize each content page separately, so that if I change one chapter, it won't affect the next?

    how can I customize each content page separately, so that if I change one chapter, it won't affect the next?

    I don't think you can do what you want to do, sorry.
    See: Publishing With iBooks Author
    http://shop.oreilly.com/product/0636920025597.do

  • What is the next row shortcut?

    Hi SCN,
    I know that going to the next column the shortcut is "TAB" but what is the shortcut to move to the next row?
    Thanks
    David

    Hi David
    Check the short cut pdf it may helps you
    http://www.vision33.com/media/5444/how%20to%20%20keyboard_shortcuts.pdf
    With Regards
    Balaji Sampath

  • I just bought a song on the iTunes store, but when it reaches about one minute, it just skips to the next song. What should i do?

    I just bought a song on the iTunes store, but when it reaches about one minute, it just skips to the next song, with no warnings. I tried to delete and download it again, but it didn`t solve the problem. What should I do?

    Restart your Mac and try again...
    If no joy...  Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

Maybe you are looking for