Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to calculate status of a range based on:
When Data is present in Col1, Select Cell data for Col1 & Col 3 of same row and write it to an arrary. I'd appreciate any help or direction with this. I've tried to set it up to: Read through a range of cells (currently A2:J13), and where A1 is not empty, select the contents of A2 and E2 and write them to an array. So far I have: Sub TestStatusArray() Dim TestCaseID As String Dim Status As Boolean Dim R As Integer R = 2 Do While Not (IsEmpty(Cells(R, 1))) Cells(R, 1).Copy << getting lost here Loop End Sub I can't seem to figure out how to extract the contents of the cells and and write A2 to TestCaseID and E2 to Status. Ideally, this data will then later be populated on a separate worksheet. I welcome any suggestions/recommendations/reading links. Thanks, Leigh |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Read Worksheet Data into VBA Array? | Excel Discussion (Misc queries) | |||
Can a cell refer to range name/array of data previously set? | Excel Discussion (Misc queries) | |||
How do i read Selection.Shapes.Range(Array(i)? | Excel Programming | |||
Read a range to an array | Excel Programming | |||
Read Range Data into Array | Excel Programming |