you can create a new conditional format for a given cell range which compares the current row and column numbers to the indirect reference cells.
R1C1 style
=IF(AND(ROW(RC)>=R26C7,ROW(RC)<=R26C8,COLUMN(RC)>=R27C7,COLUMN(RC)<=R27C8),1,0)
=ROW(RC)
will give you the current row number of the local cell
=COLUMN(RC)
will give you the current column number of the local cell.
A1 Style
=IF(AND(ROW(A1)>=$G$26,ROW(A1)<=$H$26,COLUMN(A1)>=COLUMN(INDIRECT($G$27&$G$26)),COLUMN(A1)<=COLUMN(INDIRECT($H$27&$H$26))),1,0)
Since we are using A1 style, you must convert your indirect column reference letters to numbers using COLUMN(INDIRECT())
.
In this case, 'A1' is shown in the formula because that is the first cell in the range that I am conditionally formatting. You should change this to whatever the first cell in your range is.