I want to edit this query
=COUNTIFS('Sheet1'!E2:E465,7,'Sheet1'!F2:F465,2)
so that when I drag/copy it sideways, as in, next cell to the right the 2 stays constant and the 7 increments like
=COUNTIFS('Sheet1'!E2:E465,8,'Sheet1'!F2:F465,2)
and so on etc
=COUNTIFS('Sheet1'!E2:E465,9,'Sheet1'!F2:F465,2)
=COUNTIFS('Sheet1'!E2:E465,10,'Sheet1'!F2:F465,2)
no luck with the $ next to the 7
Except that instead of Column() + 1, you should go Column() + WhateverNumberGivesYouTheRightAnswer
So if you are in the sixth column, and want the value 7, you would say Column() + 1 (as in 6 + 1). If you are in the ninth column, and want the value 12, you would say Column() + 3
This will work if you drag it across and down.