Formula to get table address

drom

Well-known Member
Joined
Mar 20, 2005
Messages
528
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and Thanks in advance!

I do not want to use VBA

I have a table in a sheet
The table name is Table1
This table may contain X rows and Y columns
For this eg: B5;Z450.​
How Can I use a Formula to get this table range address ??
=CELL("address";Table1) is giving me only the upper left cell address so $B$5
and I am expecting to get B5;Z450 or $B$5:$Z$450
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Maybe one of these methods?
 
Upvote 0
does this work
=ADDRESS(@ROW(Table1),@COLUMN(Table1),4)&":"&ADDRESS(@ROW(Table1)+ROWS(Table1)-1,@COLUMN(Table1)+COLUMNS(Table1)-1,4)

Book2
ABCDEFGHIJ
1Column1Column2Column3Column4Column5
2A2:E21
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Sheet1
Cell Formulas
RangeFormula
H2H2=ADDRESS(ROW(Table1),COLUMN(Table1),4)&":"&ADDRESS(ROW(Table1)+ROWS(Table1)-1,COLUMN(Table1)+COLUMNS(Table1)-1,4)



 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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