Fill Column with Pattern

neodjandre

Well-known Member
Joined
Nov 29, 2006
Messages
950
Office Version
  1. 2019
Platform
  1. Windows
I need to fill a column of my table with VBA as follows:

IS100
IS110
IS120
IS130

I can select the range as follows but not sure how to proceed after:

Range("table_admin[Sequence]")

many thanks
Andrew
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
I need to fill a column of my table with VBA as follows:

IS100
IS110
IS120
IS130

I can select the range as follows but not sure how to proceed after:

Range("table_admin[Sequence]")
Untested, but I think this should work...

Range("table_admin[Sequence]") = ["IS"&100+10*ROW(1:999)]

Note that if you have, or could have, more than 999 rows of data in your table, then increase the 999 to a value that would cover the maximum number of rows you would ever expect to have in your table.
 
Upvote 0

Forum statistics

Threads
1,215,772
Messages
6,126,803
Members
449,337
Latest member
BBV123

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