how to combine 3 conditions in one formula?

Len Cun

New Member
Joined
Jul 17, 2018
Messages
11
Please help me again.

I want to create a formulas from which the conditional statements will be coming from 3 different columns.

A1 B1 C1 D1
Encode Date Penalty Prev. issued Status

wherein Columns A,B and C must be combine in one formula to arrive at column D(this must display either inactive,for sched or served with pending)

A=date of encoding:
if date is below January 31, 2018, D1 must be tagged as "inactive"
if date is February 1, 2018 to present, D1 must display "for sched"
B=Penalty
if penalty is suspension, D1 must display "for sched"
if penalty is rcvng only, D1 must display "inactive"
C=Prev.issued (1st priority to be established)
if C is greater than zero, D1 must also display "served with pending"

simultaneous conditions, is this possible?

Thanks in advance again.

Len
 
Last edited:

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
What do you want to happen when conflicting conditions are met?

If the date in A is Jan. 1, 2017 and B has penalty in suspension and C is 12, what do you want?
 
Upvote 0
How about =IF(C1>0, "served with pending",IF(OR(B1="rcvng only", A1<=DATEVALUE("1/31/2018')),"inactive","for sched")
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,416
Members
448,960
Latest member
AKSMITH

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