How to Specify Tab in the Excel Document -


goal:
tab named "bbb" should use sourcecode below.

problem:
in excel document, have 9 tab , and 1 of them named "bbb" should use source code below. question how?

sub sample()  range("b4:e7") = [index(upper(b4:e7),)] end sub 

try this

worksheets("bbb").range("b4:e7") = ... 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -