VBA - Avoid repeating an IF formula for each cell and apply to whole column?

Fra88

New Member
Joined
Jan 17, 2017
Messages
10
Office Version
  1. 2016
Platform
  1. Windows
H62b9Ni
Hi, thanks a lot in advance for the help

I have a simple macro working for the below table:
H62b9Ni


A B C D
TransportAmountCurrencyUSD
Flight to Narita300USD
Shinkanzen13,080YEN

<tbody>
</tbody>


If Currency in column "C" is YEN, the macro convert the amount in USD in column "D", otherwise, if the currency is "USD", the macro just copy the value from B to D.
What I did, however, was a very simple macro. Instead of repeating the lines each time as I did (first verifying if the value for C1 is yen or usd; then verifying C2; etc.), is there an easy
u2kClxg
way to automatize this process or have the "if" condition apply to the whole column?

Thanks a lot !

Code:
Sub test()
 
If Sheets("Data").Range("C2").Value = "USD" Then
        Sheets("Data").Range("D2").Value = Sheets("Data").Range("B2").Value
ElseIf Sheets("Data").Range("C2").Value = "YEN" Then
        Sheets("Data").Range("D2").Value = Sheets("Data").Range("B2").Value*0.0089
Else: Sheets("Data").Range("C2").Value = "currency not USD nor YEN”
End If
 
If Sheets("Data").Range("C3").Value = "USD" Then
        Sheets("Data").Range("D3").Value = Sheets("Data").Range("B3").Value
ElseIf Sheets("Data").Range("C3").Value = "YEN" Then
        Sheets("Data").Range("D3").Value = Sheets("Data").Range("B3").Value*0.0089
Else: Sheets("Data").Range("C3").Value = "currency not USD nor YEN”
End If
 
End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
How about
Code:
Sub Convert()
   With Range("D2", Range("C" & Rows.Count).End(xlUp).Offset(, 1))
      .Value = Evaluate(Replace(Replace("If(@c=""USD"",@b,if(@c=""YEN"",@b*0.0089,""currency not USD nor YEN""))", "@b", .Offset(, -2).Address), "@c", .Offset(, -1).Address))
   End With
End Sub
 
Upvote 0
You are amazing !
When you have time, can you help me understand a little what does your code mean?
It works perfectly, but I would not be able to replicate it at all

Thank you a lot !!!
 
Upvote 0
the code basically replicates a "standard" formula
in D2 =IF(C2="USD",B2,IF(C2="YEN",B2*0.0089,"currency not USD nor YEN"))
but using the entire Col range rather than just C2, B2
The @b & @c are just "place holders" & the replace function replaces them .Offset(, -2).Address & .Offset(, -1).Address respectively.

HTH
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,262
Members
449,075
Latest member
staticfluids

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