SET RANGE COLOR activity_range 에서 column (알파벳) 변수 처리

안녕하세요 초보 질문입니다~

제가 EXCEL header 중에 어떤 character 가 (e.g. Super) 들어가면 그 cell 만 빨간색으로 fill up 하고 싶은데, set range color / range 에서 cell 을 어떻게 변수로 처리하는지 모르겠어요.

아래와 같이 하였읍니다.
lastcolumnumber = dt.colums.count / 마지막 column 수를 읽고.
tempcolnum = 1

DO while
IF dt.Rows(0).Item(tempcolnum).tostring.contains(“Super”)
THEN
Set Range Color activity 로 그셀에 빨간색 칠
ELSE ENDIF

tempcolnumber = tempcolnum+1

UNTIL condition : ttempcolnum < lastcolumnber

이때 Set range color 에서 range 에 CELL 을 변수로 어떻게 해야하는지요.
이게 A1, B1, C1… 이렇게 가는건데, column (알파벳) 을 변수로 해서 set range color 의 range 에 어떻게 넣어야 하는지요. 도움 부탁 드립니다,
감사합니다!!