i have problem on C# console application.
i declare :
DataTable MasterExcel = this read frem excel
and i already check MasterExcel have 141 data.
but when i try to select :
DataRow[] result = MasterExcel.select(“Name= ‘Adam'”);
there should be one data found. but “result” still cant find any data.
Thanks for your help, I try to check again in my code:
I did realize that the return column header name isn’t “Name” but is “Column4”.
and that day I change it, and now its working with both code:
or