vbscript variable to excel

RAYLWARD102

Well-known Member
Joined
May 27, 2010
Messages
529
I've got a vbscript that passes a variable to excel.
It currently and successfully can deliver a single value to excel.
I'm attempting to send an array; not having any luck.
The excel code receives the variable and debug.print confirms the variable is an array, but as soon as you try to access the contents of the array, it errors


Here is the excel receiving macro:
Code:
Sub Test(SomeArray As Variant)
    Select Case IsArray(SomeArray)
        Case True
            Debug.Print "yes " & Now
            Debug.Print UBound(SomeArray)
        Case False
            Debug.Print "not " & Now
    End Select
End Sub


Here is the VBscript:
Code:
  Dim FileCount() 
 On Error Resume Next
   Err.Clear 
   Set objExcel = GetObject( , "Excel.Application")   
   Set objWorkbook = objExcel.Workbooks("pass vbcript array to excel.xlsm") 
   If Err.Number <> 0 Then
      Set objFSO = Nothing
      WScript.Quit
   End If
   FileCount = Split("1,2,3,4",",")
   objExcel.Application.Run "Module1.Test",  FileCount
   Set objWorkbook = Nothing
   Set objExcel = Nothing
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Just a shot in the dark....

Try replacing the 3rd to last line with this:
Code:
Call Test(FileCount)
 
Upvote 0
I'm guessing arrays are implemented differently between VBA and VBScript so they won't be compatable.

A couple of options.

1. Do the split using the VBA library instead of the VBScript Library:

Code:
Dim FileCount
On Error Resume Next
Err.Clear 
Set objExcel = GetObject( , "Excel.Application")   
Set objWorkbook = objExcel.Workbooks("book1.xlsm") 
If Err.Number <> 0 Then
   Set objFSO = Nothing
   WScript.Quit
End If
FileCount = "1,2,3,4"
objExcel.Application.Run "Module1.Test", FileCount
Set objWorkbook = Nothing
Set objExcel = Nothing

Code:
Sub Test(SomeString As Variant)

Dim Arr As Variant
    Arr = Split(SomeString, ",")
    Select Case IsArray(Arr)
        Case True
            MsgBox "yes " & Now
            MsgBox UBound(Arr)
        Case False
            MsgBox "not " & Now
    End Select
End Sub

2. Pass a collection that is COM compatible such as the System.Collections.ArrayList in the .NET library.
Code:
On Error Resume Next
Err.Clear 
Set objExcel = GetObject( , "Excel.Application")   
Set objWorkbook = objExcel.Workbooks("book1.xlsm") 
If Err.Number <> 0 Then
   Set objFSO = Nothing
   WScript.Quit
End If

Dim FileCount
Set FileCount = CreateArrayList(Array("A","B","C",1,2,3))

objExcel.Application.Run "Module1.Test2",  FileCount
Set objWorkbook = Nothing
Set objExcel = Nothing

Function CreateArrayList(Items)

Dim List
Dim Item

Set List = CreateObject("System.Collections.ArrayList")

   For Each Item in Items
      List.Add(Item)
   Next

   Set CreateArrayList = List
   
End Function

Code:
Sub Test2(SomeList As Variant)

Dim Item As Variant

  For Each Item In SomeList
    MsgBox Item
  Next Item
  
  MsgBox SomeList.Contains("B")
  MsgBox SomeList.Contains("D")
    
End Sub

ArrayList Members:
https://msdn.microsoft.com/en-us/library/system.collections.arraylist(v=vs.110).aspx
 
Upvote 0
How where you trying to access the array in VBA?

What errors did you get when doing that?

Also, how does the array appear in the Locals window?
 
Upvote 0
from first example, error occurred at Debug.Print UBound(SomeArray)
Isarray was reporting True, but not allowing me to Debug.Print UBound(SomeArray)
I think the other problem I was having was being masked by on error resume next; I removed that and figured problem out.
Thanks for the help
 
Upvote 0
This worked fine for me, I think your problem was how you were declaring FileCount.
Code:
Dim FileCount


	Set objExcel = GetObject( , "Excel.Application")   
	Set objWorkbook = objExcel.Workbooks("pass vbcript array to excel.xlsm") 

	If Err.Number <> 0 Then
	  Set objFSO = Nothing
	  WScript.Quit
	End If

	FileCount = split("1,2,3,4", ",")

	objExcel.Application.Run "Module1.Test",  FileCount

	Set objWorkbook = Nothing
	Set objExcel = Nothing
 
Upvote 0

Forum statistics

Threads
1,215,684
Messages
6,126,199
Members
449,298
Latest member
Jest

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