VBA transpose values in Array

geloader0

Board Regular
Joined
Dec 21, 2022
Messages
52
Office Version
  1. 2016
Platform
  1. Windows
Hi, how to transpose the values stored in an Array to the cells. When I tried to transpose the Array in my code I'm getting TYPE MISMATCH error.
Any help please?. Thank you

VBA Code:
Dim arrAYs As Variant
Dim rng As Range
Dim row As Range

Set rng = Range("A2:B" & Range("a965536").End(xlUp).Rows.count)

For Each row In rng.Rows
''When I get the value per row in column A and B, I split them into two string by cell.address
''
  arr = Split(row.Address, ":")
 
''This array store the values from arr = Split(row.Address, ":")
 arrAYs = Format(GetDayFromWeekNumber(Range(arr(1)).Value, Range(arr(0)).Value, 7), "MM/dd/yyyy") & " - " & Format(GetDayFromWeekNumber(Range(arr(1)).Value, Range(arr(0)).Value, 7) + 6, "MM/dd/yyyy")
  
Next

Range("F1").Resize(UBound(arrAYs )).Value = Application.Transpose(arrAYs )
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Forum statistics

Threads
1,213,536
Messages
6,114,215
Members
448,554
Latest member
Gleisner2

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