I'm trying to combine all 3 statements into one formula. My logic is, IF date = 2000 in cells H, I, J return $0. AND if Project Manager = Smith, return value in cell F2

Here is my IF and OR statement combined:

=IF(OR($H7=2000,0,OR($I7=2000,0,OR($J7=2000,0))),0,$F7)

Now I want to add in the following formula:

=IF(L7="Smith",$F7,0)

How can I combine the two?

Thank you!