Excel 数値を読み取り、計算して他のファイルへ入力したい

UiPath Studioにおいて、Excel(DataTable)の1行のうち、
複数のセルの数値を読み取り、それを計算して別のExcelファイルへ入力したいと考えております。

変数の方の設定や変換方法がわからないので、そのあたりをぜひご教示いた抱きたく思います。

Hello @kazuma-takayama!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

DataTable型は、DT.Rows(n).Item(m)で、EXCELのセルのように参照できます。Rowsは行方向、Itemは列方向で、nとmはそれぞれ0から始まります。
ヘッダーを追加を無視した状態で説明を続けると、
DT.Rows(0).Item(0)はA1セルと同意、DT.Rows(2).Item(3)はD3セルと同意です。

今、1行中の複数セル(複数列位置)を計算するとなると、
代入アクティビティで
左辺:Int32の変数
右辺:DT.Rows(0).Item(0) + DT.Rows(0).Item(2)
とかになります。もしかしたら、Ctype(DT.Rows(0).Item(2).ToString, Int32)で値を数値として変換する必要があるかもしれませんけど。。。

別のExcelファイルへは、「セルの書き込み」でシート、セル位置、Int32の変数を指定してあげれば、計算結果(Int32の変数)をシート、セル位置に展開してくれます。

回答ありがとうございます。
非常に上手くいきました。
計算はご教示いただいた方法とCInt関数を用いましたが、
どちらでも問題なくクリアできました。
本当にありがとうございます。

1 Like