I'm trying to apply a formula to an entire column in sheets that is being populated from a form. It basically checks students answers vs the correct answers and gives the number correct (which goes to other tabs and does other things). Currently I've been dragging the formula down, which is an option, but I'd like the formula to automatically be applied through arrayformula, but my current solution just gives me the total count. Any help would be much appreciated as to where I'm going wrong.
Here is the formula I want applied down (From k22:K)
=COUNTIF(F22,$F$3)+Countif(G22,$F$5)+Countif(H22,$F$7)+Countif(I22,$F$9)
Here is the failed arrayformula
=Arrayformula(COUNTIF(F22:F,$F$3)+Countif(G22:G,$F$5)+Countif(H22:H,$F$7)+Countif(I22:I,$F$9))