Filling an array with 1 row of data

jay_hl

New Member
Joined
Jun 28, 2012
Messages
27
Hello

I have an array which has a range of data (e.g B2:B10). Because this column can move, and the number of rows are dynamic, I have coded this to have a StartRow, LastRow, and a search of a column number.

The line of code works well, when there are multiple rows (e.g StartRown< Last Row) ie a range from row 2 to 10), but when there is only 1 row of data (e.g StartRow=LastRow ie just row 2) then this line fails.

In this example:
StartRow = 2
LastRow = 2
Column1 = 8

So I would like to full the Field1 array with H2:H2

Can anyone help where I'm going wrong?

Regards

Jay

1722334016285.png
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
When you only assign a single cell to a variant it doesn't create an array,
There are a few different ways of handling this. I probably use a less conventional method put it means that I don't have to change any other parts of the code:


VBA Code:
Sub HandleSingleCellRange()

Dim rngField1 As Range, arrField1 As Variant
Dim StartRow As Long, LastRow As Long, Column1 As Long
StartRow = 2
LastRow = 2
Column1 = 8


Set rngField1 = Range(Cells(StartRow, Column1), Cells(LastRow, Column1))
arrField1 = rngField1

If IsArray(arrField1) = False Then
    ReDim arrField1(1 To 1, 1 To 1)
    arrField1(1, 1) = rngField1.Value
End If

End Sub
 
Upvote 0
Yeah I started with a similar approach (using an If but comparing LastRow>StartRow) but I wondered if there was a easier/smarter way with how the Array gets set and filled with 1 row.
 
Upvote 0
It only happens if you have a single cell. If you had 2 columns instead of 1 that wouldn't cause the issue.
A common approach it to handle the single cell case separately, I just prefer to forcibly create an array so I can use the loop I am already using for the array without handling an exception.
 
Upvote 0
Does this helps .
VBA Code:
Sub macro()
Stro = 2
Lro = 4
clm = 8

If Stro = Lro Then
ReDim arrfield1(1 To 1, 1 To 1)
arrfield1(1, 1) = Cells(Stro, clm).Value
Else
ReDim arrfield1(1 To Lro - Stro + 1, 1 To 1)
arrfield1 = Range(Cells(Stro, clm), Cells(Lro, clm))
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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