I have two columns in a datatable:
ID, Calls.
How do I find what the value of Calls is where ID = 5?
where ID = 5
5 could be anynu
You can try with method select
DataRow[] rows = table.Select("ID = 7");