Need help

Diwas R Bhattarai

New Member
Joined
Jan 16, 2018
Messages
9
Hi
I need to sort out one thing
For example
i have four option ("LEFT" "Vacation" "Final Settlement" "Working") on cell ranging from G4:G321 and when i select LEFT OR VACATION the cell i need to show show 0 other wise 30 on cell ranging from J4:J321.

I had this formula on the cell ranging J4:J321 =IF(ISNUMBER(SEARCH("Vacation",G4:G313)),"0","30")
but how to put LEFT also on that formula.

Thanks
Diwas
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Another way:

=SUM(COUNTIF($G4,{"working";"final settlement"}))*30

or

=VLOOKUP($G4,{"left",0;"vacation",0;"working",30;"final settlement",30},2,0)

Markmzz
 
Last edited:
Upvote 0

Forum statistics

Threads
1,226,729
Messages
6,192,696
Members
453,747
Latest member
tylerhyatt04

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