Hi,
I have some data
Country Name Invoice phoe num
FR qqqq 1234 56113212
IT HGJ 8787 56543212
FR YYY 1204 53113212
I need to extract the row which has FR as country
please help
Hi,
I have some data
Country Name Invoice phoe num
FR qqqq 1234 56113212
IT HGJ 8787 56543212
FR YYY 1204 53113212
I need to extract the row which has FR as country
please help
Hi @Farha.S,
Do the follow steps:
myDataTable = myDataTable.AsEnumerable.Where(Function(x) x.Item(“Country”).ToString.Equals(“FR”)).CopyToDatatable
Hi @acaciomelo,
Thank you for valueable reply.
If there is no problem can you please send an example .
Thanks
Farha
thank u so much @acaciomelo