Hi,
I am extracting datatable from website using Extract Data table component.
After this I am writing a LINQ query as given below
Assign strCount =
(From row In dtOutput
Where CDate(dtOutput(“Date”)) >= CDate(strStartofWkDate)
Select row
).Count.ToString
However this is giving error - Option strict on disallows implicit conversions from ‘String’ to ‘Integer’
I suppose the data type of date value in table is “Date”.
I am not able to get what could be the issue, Any help in this would be appreciated.