Message 1 of 23
Set Multivalue Parameter from values Message box outputs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
This rule retrieves the info I want from the excel sheet. How do I take the values from the message box and make it into a multivalue parameter.
GoExcel.Open("C:\Users\Brian\Desktop\Book1.xlsx", "Sheet1") For rowNumber = 5 To 37 If Voltage = 6.3 Then If Not GoExcel.CellValue("B" & rowNumber) = "" Then MessageBox.Show(GoExcel.CellValue("A" & rowNumber)) End If End If Next GoExcel.Close