Hi All
I am using the select method to filter the date column and finally want to do CopyToDatatable and assign it to a datatable in the Assign activity.
But the CopyToDatatable option itself is not coming and only CopyTo is coming. Why is it so ?
Hi All
I am using the select method to filter the date column and finally want to do CopyToDatatable and assign it to a datatable in the Assign activity.
But the CopyToDatatable option itself is not coming and only CopyTo is coming. Why is it so ?
Hi friend
Make sure you have it like this
dt1.Select(âyour expressionâ).CopyToDataTable
yes, still not coming.
Can you post your expression here?
If you write CopyToDataTable then is it giving any error ?
You should try like this my friend
dt.Select(â[Column1]=âColumn1Valueâ AND Column2 > âColumn2Valueââ).CopyToDataTable
Make sure to change the conditions as you want
Did you try that? Is it working @kkpatel ?
Hi @lakshman @cybzom @Palaniyappan
Please check the above screenshot. I am working in enterprise edition.
[Requested] is the date column name. dt_irc1 is the data table name.
HI @kkpatel,
Inside the expression Editor , the intellisense will not show the CopyToDatatable method. But when you put and press ok buttom. It will accept it.
Regards
Balamurugan.S
Ok will try. Can you also tell me if the spression is correct to filter a the date column ?
Hi
Add this assembly reference to your xaml by opening the main xaml with notepad (right clcik) and mention that extensions
For reference
Then we will be able to see
Or sometimes we wonât be able to see but if .CopyToDatatable() is mentioned the error will go
And your expression looks perfect please go ahead
Cheers @kkpatel
Thanks @Palaniyappan. Its coming now.
Cheers @kkpatel
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.