I need to help to set IF formula

santoshchudappa

New Member
Joined
Jun 30, 2021
Messages
7
Office Version
  1. 2007
Platform
  1. Windows
Hi Good afternoon,

I need to help to set IF formula, as If column A2 = VRL then formula will =IF(A2="VRL",((B2*C2*D2)/1728)*10), Now same result I needed If Column A2=FedEX then formula should be =IF(A2="VRL",((B2*C2*D2)/1728)*8) and If Column A2=DHL then formula should be =IF(A2="VRL",((B2*C2*D2)/1728)*5), So that I will get appropriate answer after once I change courier name in Column A2
 

Attachments

  • question.jpg
    question.jpg
    39 KB · Views: 4

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
You can use an If statement but I think you would be better off with a lookup table.
(In the below my Excel Table for the courier is called tblCourier, it can be placed anywhere in the current WorkBook)

20210706 IF change to vlookup.xlsx
ABCDEF
1Select CourierWBHResult
2VRL20181225
3
4
5
6
7
8
9
10Table --> tblCourier -->CourierMultiplier
11VRL10
12FedEx8
13DHL5
14
Data
Cell Formulas
RangeFormula
E2E2=(B2*C2*D2*VLOOKUP($A$2,tblCourier,2,FALSE))/1728
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,331
Members
449,077
Latest member
jmsotelo

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