#1   Report Post  
Mohamed
 
Posts: n/a
Default CURRENCY ADDITION

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

If the currency is in a separate column, you could use SUMIF, such as

=SUMIF(A1:A20,"USD",B1:B20)

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Mohamed" wrote in message
...
hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how

can
i sum up numbers in dollars only.

Thanks



  #3   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
do you want to add only the dollar amounts?. If yes try:
=SUMIF(B1:B100,"USD",A1:A100)
where column B stores the currency string and column A the value

If you want to add all numbers but convert them first to dollar amounts post
baack

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks

  #4   Report Post  
Art
 
Posts: n/a
Default

Assume your USD are in cells A3:A10
Your GBP are in B3:B20
Your EURO are in C3:C15

Your conversion from GBP to USD is in B1
Your conversion from EURO to USD is in C1

Then try:
=sum(A3:A10,B3:B20*B1,C3:C15*C1)
After entering the formula, hit ctrl-shift-enter instead of just enter.

Art
  #5   Report Post  
Mohamed
 
Posts: n/a
Default

OKAY, but if i have all the currencies in one coloumn, how can i sum up the
dollars only?

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks



  #6   Report Post  
Art
 
Posts: n/a
Default

That's what Frank and Bob described.

"Mohamed" wrote:

OKAY, but if i have all the currencies in one coloumn, how can i sum up the
dollars only?

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks

  #7   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
and how do you distinguish the different currencies?
Maybe post some example data to clarify this issue

"Mohamed" wrote:

OKAY, but if i have all the currencies in one coloumn, how can i sum up the
dollars only?

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks

  #8   Report Post  
Don Guillett
 
Posts: n/a
Default

try this idea depending on your formatting.

Sub sumdollars()
For Each c In Selection
If c.NumberFormat = "$#,##0.00" Then mysum = mysum + c
'or
'If c.Style = "Currency" Then mysum = mysum + c
Next
MsgBox mysum
End Sub

--
Don Guillett
SalesAid Software

"Mohamed" wrote in message
...
hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how

can
i sum up numbers in dollars only.

Thanks



  #9   Report Post  
Mohamed
 
Posts: n/a
Default

Thanks guys for your answers but still i want to tell you that the currencies
are in one column not 2 and they are in the currency format, example:
Cell A1= $1
Cell A2= $2
Cell A3= 5 Euro

so i want the total of A1 & A2

"Art" wrote:

That's what Frank and Bob described.

"Mohamed" wrote:

OKAY, but if i have all the currencies in one coloumn, how can i sum up the
dollars only?

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks

  #10   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
then you have to look at Don's VBA based solution.
Though you really may consider splitting the information in two columns (one
for the value and one for the currency)

"Mohamed" wrote:

Thanks guys for your answers but still i want to tell you that the currencies
are in one column not 2 and they are in the currency format, example:
Cell A1= $1
Cell A2= $2
Cell A3= 5 Euro

so i want the total of A1 & A2

"Art" wrote:

That's what Frank and Bob described.

"Mohamed" wrote:

OKAY, but if i have all the currencies in one coloumn, how can i sum up the
dollars only?

"Mohamed" wrote:

hI,
i have a colomn with three different currencies, (USD, GBP, EURO) , how can
i sum up numbers in dollars only.

Thanks

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
CAN I INSTALL EXCEL ON MY XP HOME ADDITION LAPTOP ? AC_MAN45 Excel Discussion (Misc queries) 4 December 1st 04 12:05 AM
The currency symbol on all my spreadsheets has changed from £ to . Malcmed Excel Discussion (Misc queries) 1 November 26th 04 10:51 PM


All times are GMT +1. The time now is 09:07 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"