[Progress Communities] [Progress OpenEdge ABL] Forum Post: How to get a cell value in Excel?

  • Thread starter Thread starter jpatel7
  • Start date Start date
Status
Not open for further replies.
J

jpatel7

Guest
I want to have a loop over spreadsheet columns and rows and perform some action for a certain cell value. Something like: for each cells: if cellValue = "abc" then do: //Do something end. end. I can't use range directly like this: chWorksheet:Range("B1"):VALUE. Because I need dynamic position of the cell. I found some code in visual basic: For Each c in Worksheets("Sheet1").Range("A1:D10") If c.Value < .001 Then c.Value = 0 End If Next c Is there a similar way in Progress? Thanks.

Continue reading...
 
Status
Not open for further replies.
Back
Top