Forum Discussion
CameronW-FSP
May 20, 2024Copper Contributor
VBA - Create new Workbooks from a Table using Unique Values
Greetings! I have a rudimentary understanding of how VBA works but have very little skill/ability in VBA code. I am trying to create a VBA script that will iterate through a Table and create new ...
JKPieterse
May 21, 2024Silver Contributor
Instead of col.Value, use oCell.Value and instead of
col.Offset(0, 1).Valueuse
oCell.Offset(0, 1).Value