Unable to set FormulaArray for a Transpose solution

ibud00

New Member
Joined
Aug 15, 2015
Messages
4
I have an 'array' that has been convoluted into a single column. Each of the original rows is now in repeating blocks of 7 vertically contiguous cells. I can manually convert therm with a series of Transpose statements derived from a recorded macro. I got the "Unable to set the FormulaArray property of the Range class" when I attempted to reduce the multiple statements into a loop. Please see below"

Code:
    Dim iVR As Integer ' Current row for column A
    Dim iHR As Integer ' Current row for columns B:H
    Dim iLstRow As Integer
    
    iHR = 2
    iLstRow = ActiveSheet.UsedRange.Row - 1 _
 ____ActiveSheet.UsedRange.Rows.Count
    
    For iVR = 7 To iLstRow Step 7
    Range("B" & iHR & ":H" & iHR).Select
    Selection.FormulaArray = "=TRANSPOSE(R[ivr-2]C[-1]:R[ivr+4]C[-1])"
    iHR = iHR + 1
    Next
    
    '   Below is the  first of the recorded macro statements
    '    Range("B2:H2").Select
'    Selection.FormulaArray = "=TRANSPOSE(R[5]C[-1]:R[11]C[-1])"
'    Range("B3:H3").Select


End Sub
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Maybe this...

Code:
Sub aTest()
    Dim iVR As Long ' Current row for column A
    Dim iHR As Long ' Current row for columns B:H
    Dim iLstRow As Long
    
    iHR = 2
    iLstRow = Cells(Rows.Count, "A").End(xlUp).Row
    
    For iVR = 7 To iLstRow Step 7
        Range("B" & iHR & ":H" & iHR).FormulaArray = _
           [COLOR=#0000ff] "=TRANSPOSE(R[" & iVR - iHR & "]C[-1]:R[" & iVR - iHR + 6 & "]C[-1])"
[/COLOR]        iHR = iHR + 1
    Next
End Sub

Hope this helps

M.
 
Upvote 0
Or a simpler code

Code:
Sub Simpler()
    Dim iVR As Long ' Current row for column A
    Dim iHR As Long ' Current row for columns B:H
    Dim iLstRow As Long
    
    iHR = 2
    iLstRow = Cells(Rows.Count, "A").End(xlUp).Row
    
    For iVR = 7 To iLstRow Step 7
        Range("B" & iHR & ":H" & iHR).FormulaArray = _
            [COLOR=#008000]"=TRANSPOSE(A" & iVR & ":A" & iVR + 6 & ")"[/COLOR]
        iHR = iHR + 1
    Next
End Sub

M.
 
Upvote 0
:biggrin: Right On! that did it. I'm using the simpler version. The recorded version messed up the mind of someone with a minimum of understanding. Again, thanks.

Bud
 
Upvote 0

Forum statistics

Threads
1,215,028
Messages
6,122,753
Members
449,094
Latest member
dsharae57

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