I would like to know the expression that extracts the values of the desired coordinates from the data table.

I want to get the value of B, the data of TOM, from the data table (DT_READ) as above.
I’m trying to implement it as an expression, but I can’t think of anything. Is there a way?
( DT.READ. ~ ) ← I would appreciate it if you could let me know in this expression.
Yoichi
(Yoichi)
2
Hi,
How about the following?
dr = DT_READ.AsEnumerable.Where(Function(r) r("NAME").ToString()="TOM").FirstOrDefault()
Sample
Sample20241015-2.zip (3.1 KB)
Regards,
Unable to convert value in System.data.datarow format to string.
An error occurs.
Yoichi
(Yoichi)
4
Hi,
It seems wrong variable type.
Did you run the above sample? And check the variable type in the sample?
Regards,
Yoichi
(Yoichi)
6
Unable to open it in my environment because of the following library.