Problem using ADDRESS function to specify a cell range in another sheet

codataguy

New Member
Joined
Oct 20, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,
I am trying to use the ADDRESS function to specify a range in another sheet, and it's not working.
Here is the formula with direct cell range reference that works:
=COUNTA(data!$A$5:data!$A$2633)
This generates the correct count of 2629

Here is the formula with the ADDRESS functions to build the range:
=COUNTA(ADDRESS(5,1,1,,"data")&":"&ADDRESS(2633,1,1,,"data"))
This generates the incorrect count of 1

I also tried using the INDIRECT function to help build the range:
=COUNTA(INDIRECT(J2))
where J2 has the formula =ADDRESS(5,1,1,,"data")&":"&ADDRESS(2633,1,1,,"data") and generates the value data!$A$5:data!$A$2633
This generates the incorrect count of 1

Any thoughts?
Thanks in advance!
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try using the following formula in cell J2:
Excel Formula:
=ADDRESS(5,1,1,,"data")&":"&ADDRESS(2633,1,1)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,131
Messages
6,123,223
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top