#1   Report Post  
Nevi
 
Posts: n/a
Default currency conversion

Hi,

I am trying to convert Canadian dollars into USD in the same cells where the
values are entered, i.e. I do not want to insert another column where I can
write a formula. How can i do that?
  #2   Report Post  
Gary Rowe
 
Posts: n/a
Default

put the currency conversion number in a cell outside the range of numbers you
want changed. Click on that number and then copy. Then click on the range
on numbers you want changed and click Edit/paste special and select the
multiply option and hit enter and all the numbers will be multiplied by the
conversion number.
Gary

"Nevi" wrote:

Hi,

I am trying to convert Canadian dollars into USD in the same cells where the
values are entered, i.e. I do not want to insert another column where I can
write a formula. How can i do that?

  #3   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

You need an event macro for this if you want conversion whne you have entered
the US currency

Put this code in a sheet module

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Range("A2"), Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Value = Target.Value * 1.22738
Application.EnableEvents = True
End Sub


Replace the * value with the current rate

cell in question is A2, adapt to fit


Regards,

Peo Sjoblom



"Nevi" wrote:

Hi,

I am trying to convert Canadian dollars into USD in the same cells where the
values are entered, i.e. I do not want to insert another column where I can
write a formula. How can i do that?

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
CONVERT DATA TO CURRENCY FORMAT roy in sunbury Excel Discussion (Misc queries) 1 January 12th 05 03:12 AM
currency custom fomula Michele Excel Discussion (Misc queries) 4 December 23rd 04 06:39 PM
Data Conversion into Sybase jagluski Excel Discussion (Misc queries) 1 December 16th 04 05:12 PM
Quattro to Excel File Conversion EBARSCH Excel Discussion (Misc queries) 1 December 5th 04 09:35 PM
Free Download of File Conversion Software Boba Fett Charts and Charting in Excel 2 December 5th 04 09:25 PM


All times are GMT +1. The time now is 11:08 PM.

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"