krunal123

Board Regular
Joined
Jun 26, 2020
Messages
169
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Condition.jpg




(NEED THIS CONDITION)

C2= "20 ft" use 5,00,000

C2= "40 ft" use 10,00,000


Change value According "20 ft" Or "40 ft "

------------------------------Kindly Suggest Right Formula-----------------
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
In D2:
Excel Formula:
=IF(C2="20 ft",500000,IF(C2="40 ft",1000000,""))
and copy down.

Note if your regional setting use semi-colons instead of colons to separate function arguments, it will look like:
Excel Formula:
=IF(C2="20 ft";500000;IF(C2="40 ft";1000000;""))
 
Upvote 0
How about
Excel Formula:
=SWITCH(C2,"20 ft",500000,"40 ft",1000000,"")
I forgot about the new SWITCH function, which makes things a little simpler.
And since it appears they are using 365, it should be available to them.
 
Upvote 0
I don't always think about, but it can make things simpler, although probably no real benefit if it's only 2 values.
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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