WRAPCOLS in VBA

Adeel1

New Member
Joined
Sep 29, 2019
Messages
29
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi All

why below code isn't working showing error in last line.

VBA Code:
Sub test()
Dim xx()

xx = Array("South", "North", "Center", "North", "Center", "South", "Center", "South", "North", "South", "North", "Center", "North", "Center", "South")

Z = Application.Transpose(xx)

x1 = Application.Evaluate("=WRAPCOLS(" & Z & ", 3)")

End Sub
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
You need a range instead of an array. Here your work around

VBA Code:
Sub test()
 Dim xx, x1
 With Range("ZZ1")
    xx = Array("South", "North", "Center", "North", "Center", "South", "Center", "South", "North", "South", "North", "Center", "North", "Center", "South")
   .Resize(UBound(xx)) = Application.Transpose(xx)
    x1 = Application.Evaluate("WRAPCOLS(" & .CurrentRegion.Address & ", 3)")
   .CurrentRegion.ClearContents
 End With
End Sub
 
Upvote 0
You need a range instead of an array. Here your work around

VBA Code:
Sub test()
 Dim xx, x1
 With Range("ZZ1")
    xx = Array("South", "North", "Center", "North", "Center", "South", "Center", "South", "North", "South", "North", "Center", "North", "Center", "South")
   .Resize(UBound(xx)) = Application.Transpose(xx)
    x1 = Application.Evaluate("WRAPCOLS(" & .CurrentRegion.Address & ", 3)")
   .CurrentRegion.ClearContents
 End With
End Sub
thx JEC for your help and info.
 
Upvote 0
You're welcome, here a pure VBA approach. Array 'ary' contains the output

VBA Code:
Sub jec()
 Dim ar, j As Long
 ar = Array("South", "North", "Center", "North", "Center", "South", "Center", "South", "North", "South", "North", "Center", "North", "Center", "South")
 ReDim ary(UBound(ar), 4)
 For j = 0 To UBound(ar) - 1
   ary(j \ 5, j Mod 5) = ar(j)
 Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,558
Messages
6,160,486
Members
451,651
Latest member
Penapensil

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