Copy GBP tab to a EUR tab

leodo21

New Member
Joined
Dec 7, 2021
Messages
1
Hi,

I have tab full of GBP values - such as

Type 2010 2011 2012 and so on.....
Green
56 112 372
Blue 966 999 1012
Red 566 456 223
and so on .....

I would like to copy the entire tab into tab 2, however each cell would be "XXX * EUR value" - what I mean is:
Cell B2 in tab2 would show the figure in cell B2 tab1, multiplied by a fixed cell (say $Z$999) which contains the exchange rate.
Cell C3 in tab2 would show the figure in cell C3 tab1, multiplied by a fixed cell (say $Z$999) which contains the exchange rate.
Cell D5 in tab2 would show the figure in cell D5 tab1, multiplied by a fixed cell (say $Z$999) which contains the exchange rate.
And so on.

Any formulea which I can use, without going into VBA?

Many thanks!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
You can use this kind of formula. I put the exchange rate i K1. In A1 you put the name on Tab1

Mappe1
ABCDEFGHIJK
1Ark11,25
2156,25
3443,75
4
5318,75
Ark2
Cell Formulas
RangeFormula
B2B2=INDIRECT(ADDRESS(ROW(B2),COLUMN(B2),1,1,$A$1))*K1
C3C3=INDIRECT(ADDRESS(ROW(C3),COLUMN(C3),1,1,$A$1))*K1
D5D5=INDIRECT(ADDRESS(ROW(D5),COLUMN(D5),1,1,$A$1))*K1
 
Upvote 0
Hi & welcome to MrExcel.
Another option without volatile functions.
In B2 on sheet 2 dragged down & across
Excel Formula:
=IF(Sheet1!B2="","",Sheet1!B2*Sheet1!$Z$1)

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,809
Members
449,048
Latest member
greyangel23

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