Tuition Costs

P

pogiman via OfficeKB.com

Assuming that Column G is a date and not just a year, I suggest you define a
cut-off period.

Try this:

I21 =If(and(C21="Resident",G21>={Cut-off}),83.5,If(and(C21="Non-Resident",
G21>={Cut-off}),226.5,If(and(C21="Resident",G21<{Cut-off}),75.5,If(and
(C21="Non-Resident",G21<{Cut-off}),199.5))))
 
Top