モダンのRead RangeXアクティビティの使い方

UiPath Studio EnterPrise Edition 23.10.0を利用中の者です。

モダンのRead RangeXアクティビティで、"Sheet1"の"A1"以降を読み込む構文をco pilotに質問したら下記の回答が返ってきました。
Excel.Sheet(“Sheet1”).Range(“A1”).ReadRangeX
正解は、下記ですよね?
Excel.Sheet(“Sheet1”).Range(“A1”)

Hi @gorby

Excel.Sheet("Sheet1").Range("A1") is correct as this syntax will read the A1 cell value from Sheet1.

Regards

Thank you for your reply!
May I think this syntax read the value from “A1” cell until the end of the sheet"Sheet1"?

Hi @gorby

If you want to read the entire sheet then this syntax should work for you.
Excel.Sheet("Sheet1")

Hope it helps!!

No. I want to read from “A1” cell → end of the sheet.

Hi @gorby

That syntax will read from A1 cell to entire sheet.

Hope it helps!!