Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default array data to cells

This loads 26 items from a column into myarray1 (thanks to the posts for
that).

Dim i As Integer
i = 1
For i = 1 To 26

Dim myarray1()
Erase myarray1
myarray1 =
Application.Transpose(ThisWorkbook.Sheets("Dates") .Range("b5:b30"))

My "for next" section adds a page, names if from a similar array using this
function (ActiveSheet.Name = myarrayx(i)), sets margins, print area and then
goes on to add the next 25 pages.

What I need, is to enter the myarray1(i) data (also 26 items) into cell b14
on each page as they are created and formatted in the for next routine. What
is the best (ie most simple code) function to use to accomplish this.

The data I put in my array are dates and I want to retreive them as dates.
If I need to redefine my array for dates please let me know. As you can tell
I am not nearly as accomplished in macro/vba as most people in these forums.

Any suggestions are welcome, if more info is needed from me just ask.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default array data to cells

Dim i as Long
dim wks as worksheet
dim myNames(1 to 26) as string
dim myDates(1 to 26) as date

'populate your arrays

for i = lbound(mynames) to ubound(mynames)
set wks = worksheets.add
wks.name = mynames(i)
with wks.range("B14")
.numberformat = "mm/dd/yyyy"
.value = mydates(i)
end with
next i

(Untested, uncompiled)

Instead of using variables like myArrayX and myArray1, you may find it easier if
you use variable names that are mnemonically significant--that mean something
when you're reading/writing the code.



anduare2 wrote:

This loads 26 items from a column into myarray1 (thanks to the posts for
that).

Dim i As Integer
i = 1
For i = 1 To 26

Dim myarray1()
Erase myarray1
myarray1 =
Application.Transpose(ThisWorkbook.Sheets("Dates") .Range("b5:b30"))

My "for next" section adds a page, names if from a similar array using this
function (ActiveSheet.Name = myarrayx(i)), sets margins, print area and then
goes on to add the next 25 pages.

What I need, is to enter the myarray1(i) data (also 26 items) into cell b14
on each page as they are created and formatted in the for next routine. What
is the best (ie most simple code) function to use to accomplish this.

The data I put in my array are dates and I want to retreive them as dates.
If I need to redefine my array for dates please let me know. As you can tell
I am not nearly as accomplished in macro/vba as most people in these forums.

Any suggestions are welcome, if more info is needed from me just ask.

Thanks


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default array data to cells

Fantastic, this really cleaned up my sad little program so much. So simple
and straight to the point. Very much appreciated.

"Dave Peterson" wrote:

Dim i as Long
dim wks as worksheet
dim myNames(1 to 26) as string
dim myDates(1 to 26) as date

'populate your arrays

for i = lbound(mynames) to ubound(mynames)
set wks = worksheets.add
wks.name = mynames(i)
with wks.range("B14")
.numberformat = "mm/dd/yyyy"
.value = mydates(i)
end with
next i

(Untested, uncompiled)

Instead of using variables like myArrayX and myArray1, you may find it easier if
you use variable names that are mnemonically significant--that mean something
when you're reading/writing the code.



anduare2 wrote:

This loads 26 items from a column into myarray1 (thanks to the posts for
that).

Dim i As Integer
i = 1
For i = 1 To 26

Dim myarray1()
Erase myarray1
myarray1 =
Application.Transpose(ThisWorkbook.Sheets("Dates") .Range("b5:b30"))

My "for next" section adds a page, names if from a similar array using this
function (ActiveSheet.Name = myarrayx(i)), sets margins, print area and then
goes on to add the next 25 pages.

What I need, is to enter the myarray1(i) data (also 26 items) into cell b14
on each page as they are created and formatted in the for next routine. What
is the best (ie most simple code) function to use to accomplish this.

The data I put in my array are dates and I want to retreive them as dates.
If I need to redefine my array for dates please let me know. As you can tell
I am not nearly as accomplished in macro/vba as most people in these forums.

Any suggestions are welcome, if more info is needed from me just ask.

Thanks


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need data result in last cell of array that contains blank cells smesurfer Excel Discussion (Misc queries) 2 February 8th 10 10:51 PM
combining cells and array from different sheets into an array to pass to IRR() [email protected] Excel Discussion (Misc queries) 3 September 11th 06 07:17 AM
Checking data in each cells of an array cyzax7 via OfficeKB.com Excel Programming 9 June 24th 06 10:39 PM
Copy Data From Cells To Array MarcL via OfficeKB.com Excel Programming 3 March 8th 06 02:27 PM
Q: Best way to take data from VBA into graphs without writing data to worksheets? (Can a named range refer to an array in memory only?) KR Excel Programming 2 December 16th 04 11:12 PM


All times are GMT +1. The time now is 06:38 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"