Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ben
 
Posts: n/a
Default Assistance with Formula

Hello,

I have a workbook which I produce my Sales Quotes in.

Basically, on one page, I feed in all the relevant information and then
through various formulas (eg. =B29) where it looks to see what's in the cell
where I've fed in the info, it produces the quote on a standard template,
just with the relevant info filled in.

So far, we can only produce the quotes in one currency and I want to be able
to select different currencies (ie. Euro's, Dollars). What I need to be able
to do is select the currency we want, input the exchange rate and then have
the sheet where the offer is produced recognise that if there is something in
the foreign currency area, it recognises immediately what it is. I've setup
a validation with the list so that we can select the currency and then we
manually input the exchange rate.

Normally, we input a Euro price we automatically converts to Pound Sterling,
if we're just making a Pound Sterling offer. However, to make this in
Euro's, I have to change everything. What it needs to do is, depending on
what currency we select, convert the sterling price by the foreign exchange
rate we feed in and on the quote template in the pricing cells, it needs to
recognise that if there is a foreign currency selected, it needs to show the
symbol (ie ぎ or $) and the price etc.

Sounds complicated but is probably quite simple.

Anyone have any ideas?

Thanks,
Ben,.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Toppers
 
Posts: n/a
Default Assistance with Formula

Ben,
Given you know the currency, you can change format of the currency
cells to show the correct symbol:

Example below shows pounds sterling, US dollars and Euros

Range("G2").Select
Selection.NumberFormat = "$#,##0.00"
Range("G3").Select
Selection.NumberFormat = "[$$-409]#,##0.00"
Range("G4").Select
Selection.NumberFormat = "[$ぎ-2] #,##0.00"

Does this help?

"Ben" wrote:

Hello,

I have a workbook which I produce my Sales Quotes in.

Basically, on one page, I feed in all the relevant information and then
through various formulas (eg. =B29) where it looks to see what's in the cell
where I've fed in the info, it produces the quote on a standard template,
just with the relevant info filled in.

So far, we can only produce the quotes in one currency and I want to be able
to select different currencies (ie. Euro's, Dollars). What I need to be able
to do is select the currency we want, input the exchange rate and then have
the sheet where the offer is produced recognise that if there is something in
the foreign currency area, it recognises immediately what it is. I've setup
a validation with the list so that we can select the currency and then we
manually input the exchange rate.

Normally, we input a Euro price we automatically converts to Pound Sterling,
if we're just making a Pound Sterling offer. However, to make this in
Euro's, I have to change everything. What it needs to do is, depending on
what currency we select, convert the sterling price by the foreign exchange
rate we feed in and on the quote template in the pricing cells, it needs to
recognise that if there is a foreign currency selected, it needs to show the
symbol (ie ぎ or $) and the price etc.

Sounds complicated but is probably quite simple.

Anyone have any ideas?

Thanks,
Ben,.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ben
 
Posts: n/a
Default Assistance with Formula

That looks about right, Toppers.

Although how would I incorporate this within the template itself?
Remember that it needs to make the necessary conversions between currencies
and it only needs to do this if a foreign currency is being worked with

"Toppers" wrote:

Ben,
Given you know the currency, you can change format of the currency
cells to show the correct symbol:

Example below shows pounds sterling, US dollars and Euros

Range("G2").Select
Selection.NumberFormat = "$#,##0.00"
Range("G3").Select
Selection.NumberFormat = "[$$-409]#,##0.00"
Range("G4").Select
Selection.NumberFormat = "[$ぎ-2] #,##0.00"

Does this help?

"Ben" wrote:

Hello,

I have a workbook which I produce my Sales Quotes in.

Basically, on one page, I feed in all the relevant information and then
through various formulas (eg. =B29) where it looks to see what's in the cell
where I've fed in the info, it produces the quote on a standard template,
just with the relevant info filled in.

So far, we can only produce the quotes in one currency and I want to be able
to select different currencies (ie. Euro's, Dollars). What I need to be able
to do is select the currency we want, input the exchange rate and then have
the sheet where the offer is produced recognise that if there is something in
the foreign currency area, it recognises immediately what it is. I've setup
a validation with the list so that we can select the currency and then we
manually input the exchange rate.

Normally, we input a Euro price we automatically converts to Pound Sterling,
if we're just making a Pound Sterling offer. However, to make this in
Euro's, I have to change everything. What it needs to do is, depending on
what currency we select, convert the sterling price by the foreign exchange
rate we feed in and on the quote template in the pricing cells, it needs to
recognise that if there is a foreign currency selected, it needs to show the
symbol (ie ぎ or $) and the price etc.

Sounds complicated but is probably quite simple.

Anyone have any ideas?

Thanks,
Ben,.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Toppers
 
Posts: n/a
Default Assistance with Formula

You will probably need to write VBA code as I don't believe you change the
formats using formulae.

Are you able to do this?

"Ben" wrote:

That looks about right, Toppers.

Although how would I incorporate this within the template itself?
Remember that it needs to make the necessary conversions between currencies
and it only needs to do this if a foreign currency is being worked with

"Toppers" wrote:

Ben,
Given you know the currency, you can change format of the currency
cells to show the correct symbol:

Example below shows pounds sterling, US dollars and Euros

Range("G2").Select
Selection.NumberFormat = "$#,##0.00"
Range("G3").Select
Selection.NumberFormat = "[$$-409]#,##0.00"
Range("G4").Select
Selection.NumberFormat = "[$ぎ-2] #,##0.00"

Does this help?

"Ben" wrote:

Hello,

I have a workbook which I produce my Sales Quotes in.

Basically, on one page, I feed in all the relevant information and then
through various formulas (eg. =B29) where it looks to see what's in the cell
where I've fed in the info, it produces the quote on a standard template,
just with the relevant info filled in.

So far, we can only produce the quotes in one currency and I want to be able
to select different currencies (ie. Euro's, Dollars). What I need to be able
to do is select the currency we want, input the exchange rate and then have
the sheet where the offer is produced recognise that if there is something in
the foreign currency area, it recognises immediately what it is. I've setup
a validation with the list so that we can select the currency and then we
manually input the exchange rate.

Normally, we input a Euro price we automatically converts to Pound Sterling,
if we're just making a Pound Sterling offer. However, to make this in
Euro's, I have to change everything. What it needs to do is, depending on
what currency we select, convert the sterling price by the foreign exchange
rate we feed in and on the quote template in the pricing cells, it needs to
recognise that if there is a foreign currency selected, it needs to show the
symbol (ie ぎ or $) and the price etc.

Sounds complicated but is probably quite simple.

Anyone have any ideas?

Thanks,
Ben,.

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
Is it possible? DakotaNJ Excel Worksheet Functions 25 September 18th 06 09:30 PM
"Unable to set the Formula property of the Series class" with a tw PeterQ Charts and Charting in Excel 1 February 15th 06 07:37 PM
Formula Assistance ( MarthaMartha Excel Worksheet Functions 2 February 15th 06 05:49 PM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
I need assistance with wrting an Excel formula mdavis Excel Worksheet Functions 2 February 2nd 05 05:48 AM


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