A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
=SUBSTITUTE(ADDRESS(2,MATCH(A16,2:2,0),4,1), "2", "") & ":" & SUBSTITUTE(ADDRESS(2,MATCH(A16,2:2,0),4,1), "2", "")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I require a formula that can help me to use the column range in COUNTIFS formula. I matched a criterion and got the cell address and now I need to change the cell address to a column range, example $BB$2 to BB:BB. Other formulas I used convert the value in a text format "BB:BB" that cannot work in COUNTIFS formula.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
=SUBSTITUTE(ADDRESS(2,MATCH(A16,2:2,0),4,1), "2", "") & ":" & SUBSTITUTE(ADDRESS(2,MATCH(A16,2:2,0),4,1), "2", "")
Thank you. I want to use the column range to count values. I used the following formula to determine the cell address of the value:
ADDRESS(2,MATCH(A16,2:2,0),4,1)
This gives me an answer BB2 and now I want to change it to BB:BB so that I can use the range in the COUNTIFS formula. Even if it can be changed to BB2:BB800 then it will work. CONCATENATE creates an answer of "BB:BB" which is seem as a text and makes the COUNTIFS invalid.
Could you share us the formula you are using? If you changed BB2 to BB:BB, it will get an array with 1048576 rows and you should put the formula in row1.
I'd suggest you use B2:B10000 instead of entire column reference.