Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default sum by currency

I have two column as you see below:
EUR 5,000.00
USD 12,500.00
EUR 1,251.00
EUR 12,544.00
USD 5,555.00
GBP 15,455.00

How can I sum the amount Per currencies
Tot GBP (function)
Tot EUR (function)
Tot USD (function)


  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming
external usenet poster
 
Posts: 618
Default sum by currency

Hi Admin

a similar question was asked earlier today - here's the answer i posted to
that question
couple of options -
1) use data / subtotals to automatically generate this (you can then use the
outline levels to hide the details allowing you to print the summary)
(ensure that you've sorted by Currency type first)
2) use a pivot table - data / pivot table and pivot chart report ... to use,
place your cursor in one cell of the data, choose data / pivot table & pivot
chart report, choose NEXT, check the range and choose NEXT, ensure in a new
worksheet and then click the LAYOUT button (before clicking FINISH)- drag
the currencies to the "row" section, drag the values into the "data"
section, now
click OK & Finish and you should have what you want
3) use a formula
=SUMIF($A$1:$A$10,A15,$B$1:$B$10)
where A1:A10 is the range containing the currencies
A15 is EUR name (with the formula being entered into B15)
and B1:B10 is the range to sum
if you have EUR in A15, USD in A16 etc, once you've entered
the formula in B15 for EUR you can fill down for the other currencies

Hope this helps
Cheers
JulieD




"Admin" wrote in message
...
I have two column as you see below:
EUR 5,000.00
USD 12,500.00
EUR 1,251.00
EUR 12,544.00
USD 5,555.00
GBP 15,455.00

How can I sum the amount Per currencies
Tot GBP (function)
Tot EUR (function)
Tot USD (function)




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 123
Default sum by currency

You can use SUMIF function.
Assume that the currecies are in Range A1 to A6 and amounts are in Range
B1 to B6.

Then the formula to sum euros will be
=SUMIF(A1:A6,"=EUR",B1:B6)

to sum Us dollars:
=SUMIF(A1:A6,"=USD",B1:B6)

to sum Pounds:
=SUMIF(A1:A6,"=GBP",B1:B6)

Sharad

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to add new currency Symbol in Format/Cell/Currency NOORZAD Excel Discussion (Misc queries) 2 June 22nd 09 07:59 AM
how do I sum currency values in a row containing currency and uni. Eusebius Excel Worksheet Functions 2 November 13th 08 01:35 PM
Currency RHiggs Excel Discussion (Misc queries) 1 November 2nd 06 12:11 AM
Conversion from currency value to currency text format Frank Kabel Excel Programming 1 August 18th 04 10:06 PM
Currency agfraser76 Excel Programming 3 November 24th 03 05:51 PM


All times are GMT +1. The time now is 01:06 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"