How can I sum the values in a given column on sheet 1 i.e. A1:A50 based on the adjacent columns specific value i.e. B1:B50 = "Living Room" on sheet 2

How can I sum the values in a given column on sheet 1 i.e. A1:A50 based on the adjacent columns specific value i.e. B1:B50 = “Dinning Room” on sheet 2
For Example:
SHEET 1
A
B
$50
Dinning Room
$800
Dinning Room
$300
Kitchen
$1,000
Master Bedroom
$100
Dinning Room
SHEET 2
Display the total SUM amount of each Project based on Sheet 1
Project Name
Total Cost
Dinning Room
$950
Kitchen
$300

Would be a good idea to open iWork Formulas and Functions User Guide and search for the description of the function named SUMIF
The Guide is available for every user thru the Help menu.
Yvan KOENIG (VALLAURIS, France) jeudi 19 mai 2011 17:32:42
Please :
Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • How can I make a label for my chart that changes dynamically when I drag selection of data to adjacent column?

    I have a custom budget using Numbers '08 and have labeled a chart in previous versions of my budget but when I tried to update it for the new year I can't figure out how to make the label change dynamically as I drag the selected area to the adjacent column. I have checked Numbers Help and Tutorial videos as wellas the manual and have not found anything that comes close to helping but as I said I had it on previous versions but obviously don't remember how I did it and unfortuanately it is not a very intuitive feature. Thanks in advance for any help on this.

    The linkage appears to be automatic, but when broken, does not reattach itself.
    Redoing the chart isn'r a long process, though, unless you've made extensive format changes to it. Here's my process, which started with a headerless table wiht the Month labels in Row 1 (and a Chart that had an "Untitled" label on the category axis, and ended with the table and chart shown below:
    Click on any cell in the table to activate it.
    Go Table > Add Header Row.
    Select the cells containing the month names. Copy.
    Select the cells in the same columns of the Header row. Paste.
    Select the table. If the Header for the current month is highlighted and the month label is on the table, Stop here.  If not (and it probably will not be), continue.
    Delete the existing Chart (or drag it aside to use as a colour and style reference)
    Unhide any hidden rows used in the Chart.
    Select the cells to be charted.
    Click the Series orientation control (¡¡¡) to change it. The control will turn 90° and move from the column highlight to the row highlight.
    Your table and chart should now resemble the one in the image above. Edit the style as needed and you're done.
    Regards,
    Barry

  • How can I sum up raws? the sum function seems to work for columns only and right now I have to create a separate formula for each raw

    How can I sum up raws? the Sum function seems to work only on columns. Right now I have to create a separate formula for each raw

    Hi dah,
    "Thanks, but can I do one formula for all present and future raws? as raws are being added, I have to do the sum function again and again"
    You do need a separate formula for each group of values to be summed.
    If the values are in columns, you need a copy of the formula for each column.
    If the values are in rows, you need a copy of the formula for for each row.
    If you set up your formulas as SGIII did in his example (shown below), where every non-header row has the same formula, Numbers will automtically add the formula to new rows as you add them.
    "Same formula" in this context means exactly the same as all the formulas above, with one exception: the row reference in each formula is incremented (by Numbers) to match the row containing the formula.
    Here the formula looks like this in the three rows shown.
    B2: =SUM(2)
    B3: =SUM(3)
    B4: =SUM(4)
    That pattern will continue as rows are added to the table.
    Also, because the row token (2) references all of the non-header cells in row 2, the formula will automatically include new columns as they are added to the table.
    Regards,
    Barry

  • How can i sum the columns by condition?

    ID    Type    QTY
    1      A         20
    2      A         20
    3      B         20
    I want to some QTY group by A but I also need the ID column to identify the order of  row.
    How can I sum QTY group by A and the result is sort by ID ?
    Thanks you 

    Whats your expected output?
    Is this the below?
    Create Table test(id int,[Type] char(1), QTY int)
    Insert into test Values(1,'A',20),
    (2,'A',20),
    (3,'B',20)
    SElect *,SUM(qty)Over(partition by Type) From test Order by id
    Drop table test

  • How can I sum all the amount per line?

    HI,
    How can I sum all the amount per line?
    EXAMPLE:
    [code]
                                             TOTAL:
    1,000         2,000     5,200            $8,200
      400         1,200     6,000             7,600
    [/code]
    THANKS!!

    If you are sure of the number of columns that you are gonna get then you can add them to a variable and display.
    total = itab-col1 + itab-col2 + itab-col3.
    If you dunno how many columns will come , you have to use field symbols.
    Say the datatabse table has 16 columns which will contain your price and you have to calculate the sum of all those , then assign them to field symbols and calculate.
    Have a look at the following code.
    FORM GET_VALUES_FROM_COSS .
      FIELD-SYMBOLS: <FS1> TYPE ANY.
      DATA: V_COMPONENT1 TYPE I.
      V_COMPONENT1=31.  " your field of table from which amount field starts
    Cumulate the posting values of all the 16 period buckets as to get
    total production order cost. This is to handle the partial posting of
    production order values in different periods.
      DO 16 TIMES.
        ADD 1 TO: V_COMPONENT1.
        ASSIGN COMPONENT V_COMPONENT1 OF STRUCTURE COSS TO <FS1>.
        IF COSS-WRTTP EQ '05' AND COSS-KSTAR EQ C_KSTAR1.
          ADD <FS1> TO I_FINAL-PL_LABCOST.
        ELSEIF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ C_KSTAR1.
          ADD <FS1> TO I_FINAL-ACT_LABCOST.
        ELSEIF COSS-WRTTP EQ '05' AND COSS-KSTAR EQ C_KSTAR2.
          ADD <FS1> TO I_FINAL-PL_MATCOST.
        ELSEIF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ C_KSTAR2.
          ADD <FS1> TO I_FINAL-ACT_MATCOST.
        ELSEIF COSS-WRTTP EQ '05' AND COSS-KSTAR EQ C_KSTAR3.
          ADD <FS1> TO I_FINAL-PL_OPCOST.
        ELSEIF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ C_KSTAR3.
          ADD <FS1> TO I_FINAL-ACT_OPCOST.
        ELSEIF COSS-WRTTP EQ '05' AND COSS-KSTAR EQ C_KSTAR4.
          ADD <FS1> TO I_FINAL-PL_FACCOST.
        ELSEIF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ C_KSTAR4.
          ADD <FS1> TO I_FINAL-ACT_FACCOST.
        ELSEIF COSS-WRTTP EQ '05' AND COSS-KSTAR EQ C_KSTAR5.
          ADD <FS1> TO I_FINAL-PL_LABCOST.
        ELSEIF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ C_KSTAR5.
          ADD <FS1> TO I_FINAL-ACT_LABCOST.
        ELSEIF COSS-WRTTP EQ '05'.
          ADD <FS1> TO I_FINAL-OTHER_PL_COST.
        ELSEIF COSS-WRTTP EQ '04'.
          ADD <FS1> TO I_FINAL-OTHER_ACT_COST.
        ENDIF.
      ENDDO.
    ENDFORM.                    " GET_VALUES_FROM_COSS
    Let us know if u need more inputs

  • How can I sum durations in Numbers 3.1?

    How can I sum durations in Numbers 3.1?

    "For some crazy reason, that worked!"
    The "crazy" reason was that 0h 0m can'r be mistaken for the time part of a Date and Time value. If you give Numbers values that are clearly durtations, no matter what format the cell is set to, then Numbers will interpret those value correctly.
    Regards,
    Barry

  • How can I sum numbers in a pdf? And, sum a partial list of numbers?

    How can I sum a list (or partial list) of numbers in a pdf?

    Thanks for your answer.  I have Adobe Acrobat 7.0 Professional.  If you
    can help me further by listing the necessary steps that would be great.
    Thanks.
    Barry Baker

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • How can I copy my Itunes-library from Iphone to my new Mac, as I forgot to copy the files from the old PC, and now it is to late. I only have music on my Iphone.

    How can I copy my Itunes-library from Iphone to my new Mac, as I forgot to copy the files from the old PC, and now it is to late. I only have music on my Iphone4. Thank you.
    gunnarfromhovik

    For iTunes purchases only..
    Connect the iPhone to your Mac, launch iTunes.
    If you haven't done this yet, go to the iTunes menu bar click Store / Authorize This Computer
    Now from the iTunes menu bar again, click File / Transfer Purchases From...

  • How can I remove music from my iPhone that's not on a playlist, or checked off in the Sync window in any of the possible categories (Playlist, genre, artist, etc)? HELP! It's taking up SO much space on my phone

    How can I remove music from my iPhone that's not on a playlist, or checked off in the Sync window in any of the possible categories (Playlist, genre, artist, etc)? HELP! It's taking up SO much space on my phone but I cannot see a way to remove any of it

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    iCloud does not provide general file storage or backup, so you cannot back up your Documents folder using it. You will need to find a third-party alternative - this page examines some options (some are free):
    http://rfwilmut.net/missing3
    iCloud at basic level, with 5GB is storage, is free: you only pay anything if you want to increase the storage space.

  • How can I listen to music from iphone 4s via apple tv whilst doing a phone call at the same time?

    How can I listen to music from iphone 4s via apple tv while doing a phone call at the same time?
    When I take a call on the iphone, iphone stops streaming the music to apple tv until I finished the call.
    thx!
    Claus
    PS: did ask the same question to apple hotline in germany. Answer: we don´t know... funny

    Welcome to the Apple Community.
    As far as I know you can't, which sort of makes sense, it seems logical to pause whatever you are doing while you take a phone call, which after all is the primary function of a phone.

  • HOW CAN I TRANSFER PHOTOS FROM MY IPOD TOUCH TO MY PC BUT THESE PHOTOS ARE NOT IN THE SAVED POTHOS FOLDER. THEY ARE IN SEPARATE AND DIFFERENT FOLDERS THAT MY DAUGTHER SAVED FROM HER PC. IS THERE ANY FREE WAY TO DO IT. PLEASE REPLY TO JUMACAVA07@HOTMAIL.

    HOW CAN I TRANSFER PHOTOS FROM MY IPOD TOUCH TO MY PC BUT THESE PHOTOS ARE NOT IN THE SAVED POTHOS FOLDER. THEY ARE IN SEPARATE AND DIFFERENT FOLDERS THAT MY DAUGTHER SAVED FROM HER PC. IS THERE ANY FREE WAY TO DO IT. PLEASE REPLY TO JUMACAVA07@HOTMAIL.
    THANKS

    If you need to Transfer photos from iPod to PC,I have a method for your reference,I suggest you use iStonsoft iPod to Mac Transfer software to copy photos from iPod to Mac,a professional software,Not only can you quickly Copy pictures from iPod to Computer,but also can save a lot of trouble and time
    [B]Follow these steps to Transfer photos from iPod to Mac[/B]
    Step 1. Download and run the iStonsoft iPod to Mac Transfer software on your Mac computer
    Step 2. Connect iPhone with Mac
    Step 3. Hit "Photos" to scan photos from iPod to Mac
    Step 4. Click "Photos" button to transfer photos from iPod to Mac
    Step 5. Wait a while,you will success Transfer these photos from iPod to Mac
    How to Transfer/Copy Photos/Pictures from iPod to Mac computer

  • On my ipod, how can i unredeem an itunes gift card because i had to do these security questions i forgot the answers to. I NEED HELP!!!!!!!!

    on my ipod, how can i unredeem an itunes gift card because i had to do these security questions i forgot the answers to. I NEED HELP!!!!!!!!

    Maybe:
    How to manage unused iTunes Gift Card and Gift Certificate balances
    Have you tried this to try to reset the security questions.
    See Kappy's previous discussion.
    HT5312 How to recover security...: Apple Support Communities
    Contact iTunes by:
    Contact iTunes

  • HT4527 How can I get my iTunes account on my new computer if I don't have access to the old one?

    My computer with my iTunes was recently destroyed.  How can I get my iTunes account on my new computer if I don't have access to the old one?

    Hi erikafromorlando,
    You can sign in and download your previously purchased items by following this article:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    I hope this helps!
    - Ari

Maybe you are looking for

  • Export to Text format

    When a report is exported to Text format, trailing spaces do not appear in the exported file. How do you resolve this issue? 1. Create a report. 2. Include 3 fields 3. Export ->txt After the end of 3rd field we require 200 spaces...any idea...

  • External Firewire HDD causing finder crash

    I just bought an external Seagate FreeAgent Desk 1TB HDD. The thing is very finicky about how you plug it in and start it up, do the wrong sequence and it won't ever show up on the desktop. When I have it plugged in via FW800 The thing causes my find

  • Winlogin is deleting folders and files on start-up

    We have been using Crystal Reports Server X1 Release 2 since 2007.  Week ago folders started dissaperaing and found out that there was a conflict with McCaffe update that deleted business objects folder and Tomcat stopped working.  Now we are trying

  • How do I charge it

    I bought an iPhone and now I want to recharge it. How do I charge it for the first time? Within a few hours should be charged? And then how many times? Thanks

  • Snow Leopard makes FCP 6.0.6 wipes black out main video

    Since I upgraded to Snow Leopard I have found FCP 6.0.6 will not show the viewer window output properly on my 2nd screen via the View > VideoPlayback option, it just shows the first frame, if I scrub the viewer window it updates but not when I play i