ハイパーリンク設定とセルの拡大について

いつも参考にさせていただいております。
Excelのことになってしまいますが、Uipath上で解決したく、ご存じの方がいらっしゃったらご教示いただきたく思います。

①データスクレイピングで取得した構造化データをエクセルに張り付けております。
すべてのURLにハイパーリンクを貼る方法があれば教えていただけないでしょうか?

②A列を見やすくするため、A列をすべて表示させる方法をご存じでしたら教えていただきたく思います。方法がないのであれば、A列とB列の間をクリックするしかないのかと考えております。

Hey @nara1

Hope you are doing well,

You can do this

  • Use Read Range and get the output like outDataTable
  • and use For Each Row and pass outDataTable as input now you can use Message Box to see the column value like this row(0).ToString

Cheers
@nara1

Pradeep_shiv-san, thank you so much for your response but my intention for the question is as follows;

  1. Cells in B row are recognized as just text. But I am hoping these cells would have hyperlink to move the link by just clicking. Could you please let me know how, if possible?
  2. Width of A row is narrow so I can’t see all texts as they are. Could you please let me know how I can show all texts in A row? If possible, the way of automatic adjusting is better than input a value of width of A row.

いずれも、対象の列やセルをUI操作するように実装することで実現可能かと思います。
あるいは、対象のExcelにマクロとして、操作したい内容を実装しUiPathから呼び出すほうが楽かもしれません。

cheez_RPA 様

ご返信ありがとうございます。
UI操作でやってみます。

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.