array to range

  1. S

    Array data to new CSV file

    Below is my code: I'm trying to store data into an array, once its done trying to open new sheet and paste array data into new sheet's column A. It opens new sheet but doesn't unload data into new sheet. Please assist. Sub LoadArray() Dim TotalRows As Long Dim x As Integer Dim...
  2. S

    How to paste an Array of Values in an Excel Sheet?

    <tbody> Interest Amount Acceptance Amount >0 >0 </tbody> Need to create the above criteria Range for an advanced filter... (in runtime) Why the below code is not working?Range("A1:B3").value = Array("Interest Amount","Acceptance Amount",">0","","",">0") How to make it work? Is loops a...
  3. S

    Fill the worksheet using a Jagged Array faster

    I know I can quickly fill a worksheet with an array referencing a value using something like this: Dim thisArray(6 To 139, 6 To 40) As Variant Dim x As String dim row, col As Integer for row from 6 to 139 step 1 for col from 6 to 40 step 1 thisArray(row, col) = row * col next col next row x =...
  4. D

    Set a range = to array in different but open workbook

    Hi guys I can't figure this one out. (I'm a novice) I really want to learn to use arrays to and from ranges because it will be much faster than the looping methods I currently use. I searched the forum but see nothing exactly like my problem. The code I pasted is part of one of my procedures and...

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