ある文字列の列位置取得について

Excelシートに存在する、ある文字列の列位置を取得したい場合、どのアクティビティを使うべきでしょうか。
そのアクティビティの結果を格納する変数の型を教えてください。その後のフローで結果をstring型で使用したいと考えております。

@delica22

Use Find/Replace Value activity from excel activites package.

This will give you the cell address where the desired string value is found.

To get only the column name from the cell address, use this expression in assign activity.

System.Text.RegularExpressions.Regex.Match(strCellAddress,"\D.*").Tostring

無事解決しました。
ありがとうございます。

1 Like

@delica22,

Glad to hear this! Kindly close the thread.

1 Like

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