View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_300_] mudraker[_300_] is offline
external usenet poster
 
Posts: 1
Default CAE macro for green screen updates with Excel data

Sriram


This will give you a start to help you solve your problem

Dim strSend As String
Dim lRow As Long
For lRow = 1 To 10 Step 1
strSend = Cells(lRow, 1).Value
autECLSession.autECLPS.SendKeys strSend
Next lRo

--
Message posted from http://www.ExcelForum.com