7 lines
163 B
QBasic
7 lines
163 B
QBasic
Attribute VB_Name = "Main"
|
|
Sub main()
|
|
'get the av data based on what is in cell b24
|
|
msgbox "The av to grab are" + sheets("Setup Data").range("B24").value
|
|
End Sub
|
|
|