Can't filter at "filter DataTable"

Hi.

I need your help;;
Even if the filter is applied as shown below, other columns will be output.
Is there anything wrong with it?
Thank you.

お世話になっております。
以下のように出力列をフィルタリング設定しているのですが、他の列が出力されてしまいます。
どこか間違っている点はございますか?
ご存じであれば、ご教示お願いしたく存します。
よろしくお願いいたします。

uipath%20forum

@mmm

Could you please tell more details about the issue for better understanding.

Hi, Mr.lakshman.
Thanks your reply.

I have an Excel file.

I want to extract “Customer Name” in the second column and “2019/09” in the 25th column from this data table.

But, The “project code” in the first column will be output.

このデータテーブルから2列目の”顧客正式名称”と25列目の”2019/09”を抽出したいです。
しかし、1列目の”プロジェクトコード”が出力されてしまいます。

1 Like

@mmm,

Its easy :slight_smile:

Have you tried with Linq ?

Regards,
Anil

@mmm
Sometimes some blanks are present on the end of the first row cell values, that are used for columnnames. This lead to failing filter results. You can do following

instead of the columnname use following e.g for the second column: YourTableDataVar.Columns(1).ColumnName

Thanks,your reply

System.IndexOutOfRangeException: 列 1 が見つかりません。

”Column 1 not found” I got this error;;

Thanks, your reply.

I’ll try it.