How to refer to table columns in VBA?

Kyletok

New Member
Joined
Sep 16, 2017
Messages
47
I know I can refer to a table with []

so right now I have

[TABLENAME].Rows(X).Columns(Y) = Value

Can I also refer to a column with a column name without setting a variable for it?

I set it as a variable in case I added columns in the table, so in the macro pulls Y from the sheet which lets it know which column the column I want is in, Column(tablename[columnname])

is it possible to do [TABLENAME].[ColumnNAME]
or something of the sort
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi,

You could test following :

Code:
[COLOR=#000000][FONT=Courier New]ActiveSheet.Range("Table1[Column2]").Select[/FONT][/COLOR]

HTH
 
Upvote 0
It may be so:
DESCRIPTION is column name
4 is the row number (DataBodyRange = data only)


Code:
ActiveSheet.ListObjects("Tabla1").ListColumns("DESCRIPTION").DataBodyRange.Cells(4).Value = "data"
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,391
Members
449,080
Latest member
Armadillos

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