2 Ways to do it
-
Use the Read cell activity and Pass the Cell Number - Store this Output in a String variable and display in message box.
-
Read the complete thing in DataTable and then use read range and then use a Message box and print
DT.Rows(0)(1).toString
where :
DT : DataTable
(0) : Index for Row
(1) : Index for Column
-
Use read cell activity and pass C4 is cell value and you wpuld get the values required
-
Else use read range with headers property checked and then
dt.Rows(3)("Proposed System").ToString
Cheers