i am trying to write a macro to enable me to copy and paste conditional formatting.

i want to copy the conditional formatting i have in a block K2 through to Q8 then paste to K10 through to Q16 , i am using numers in K1-Q1 as the critera for the conditional formatting, this is what i have so far

Range("K2:Q8").Select
Selection.Copy
Range("K10:Q16").Select
Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
End Sub

the conditional format is as below
condition 1, formula is =countif($K$1:$p$1,K2)
condition 2, formula is =countif($Q$1,K2)

when i run the macro it obviously gives me the coditional formatting using the
K1, P1 criteria i want it to use the criteria from the K9,P9 line.
at the moment i then have to go into the conditional formatting and change the conditions to the K9 set.
i will have to do thia about 1000 times is there a better way