Computer Science, asked by pritamrai1808, 2 months ago

How will he refer to a range of cells in column F?

Answers

Answered by anamikadebnathkol2
0

Answer:

where F13 is the cell you need to reference:

=CELL("Row",F13)  yields 13; its row number

=CELL("Col",F13)  yields 6; its column number;  

=SUBSTITUTE(ADDRESS(1,COLUMN(F13)*1,4),"1","") yields F; its column letter

Explanation:

Similar questions