Currency Converter based on pick list and exchange rate

rguliuzza

New Member
Joined
Mar 12, 2012
Messages
37
Hi there,

I am creating a worksheet that I would like to be able to use a pick list for a country and this would be linked to an exchange rate in another range of cells. From there, I would like to have my price column to change to the new rate with the proper symbol. Anyone have a clue on how to do this? I have seen VBA on formatting the cell. I am familiar on how to change cells with a picklist; however, I have never have all these at the same time.

Any assistance would be great.

Thank you,
Rick
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
have u designed your sheets
sheet 1 should contain the plrices and the currency in different columns

sheet 2 contains that day's currency rage in matrix or in two columns(dollar to pound and pound to dollar

then use formula some vlookup and multiply by price
 
Upvote 0
Hi there,

Here is a snapshot of my worksheet:

AB C D EFG
1 Pick Currency Yen
2
3 Price List SymbolExchange Rate
4 Dollar (USA)$1
5QtyDescription Price Extended Pound£0.619761
62Widget 1 $ 10.00 $ 20.00 Euro0.775791
73Widget 2 $ 15.00 $ 45.00 Yen¥77.993
81Widget 3 $ 20.00 $ 20.00 Yuan Renmimbi (China)¥6.28597
95Widget 4 $ 25.00 $ 125.00 Real (Brazil)R$2.02619
10 Dollar (Canada)$0.982662
11 Totals $ 210.00 Baht (Thailand)฿30.76
12 Rupee (India) 52.3788

<tbody>
</tbody><colgroup><col><col><col><col span="2"><col><col><col></colgroup>

What I am looking to do is to change the symbol and amount in column D based on the Currency Pick in column C1. I am sure there is a way to do it with VLOOKUP; however, I have yet to figure it out.

Trial and error. :)

Thank you,
Rick
 
Upvote 0
put the currency symbol for yen in cell D2(A B C D etc I have taken as column headings

you cannot give formula in the same celll C7 as it will give circular reference. the formula is in H7. copy this down

the formula lfor H7 is

=D2&RIGHT(C7*VLOOKUP($D$2,F5:G12,2,0),LEN(C7*VLOOKUP($D$2,F5:G12,2,0))-1)

Sheet1

*ABCDEFGH
1ABCDEFG*
2*Pick CurrencyYen¥****
3********
4*Price List***SymbolExchange Rate*
5****Dollar (USA)$1*
6QtyDescriptionPriceExtendedPound£0.62*
72Widget 1$10.00 $20.00 Euro0.776¥79.93
83Widget 2$15.00 $45.00 Yen¥77.99¥169.895
91Widget 3$20.00 $20.00 Yuan Renmimbi (China)¥6.286¥559.86
105Widget 4$25.00 $125.00 Real (Brazil)R$2.026¥949.825
11****Dollar (Canada)$0.983*
12*Totals*$210.00 Baht (Thailand)?30.76*
13****Rupee (India)*52.38*
14********

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:64px;"><col style="width:64px;"><col style="width:111px;"><col style="width:163px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"><col style="width:64px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
H7=$D$2&RIGHT(C7*VLOOKUP($D$2,F5:G12,2,0),LEN(C7*VLOOKUP($D$2,F5:G12,2,0))-1)
H8=$D$2&RIGHT(C8*VLOOKUP($D$2,F6:G13,2,0),LEN(C8*VLOOKUP($D$2,F6:G13,2,0))-1)
H9=$D$2&RIGHT(C9*VLOOKUP($D$2,F7:G14,2,0),LEN(C9*VLOOKUP($D$2,F7:G14,2,0))-1)
H10=$D$2&RIGHT(C10*VLOOKUP($D$2,F8:G15,2,0),LEN(C10*VLOOKUP($D$2,F8:G15,2,0))-1)

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,685
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top