Google Sheetsの最終行の次に入力したい

こんにちは。

データ入力済みのGoogle Sheetsの最終行の次にWriteCellでデータを入力したいです。

Database.Rows.Countが使えるかなと思ったのですが、Google Sheetsの2行目からデータがはいっているので、Database.Rows.Countの戻り値は51ですが、実際に入力したいのは”A53”からとなります
プロパティのInput>Cellの箇所に “A”+Database.Rows.Count+2.Tostring
ではエラーになるのですが、良い方法はありますでしょうか?

どうぞよろしくお願いします。

Hi @dora
Use Read range for the google sheets as"" and try to write the sheets with write cell activity

Thanks
Ashwin S

Hi @AshwinS2

Thank you for your reply.

Google Sheets data is very huge. so I can’t set as “”.
But I use Assign and can put in Database.Rows.Count+2 and I had been able to get the bottom row!

Thanks!