It would easy if there is Word Wrap option in Expression Editor to avoid scrolling right when expression exceeds length of the window
@loginerror alexandru
It would easy if there is Word Wrap option in Expression Editor to avoid scrolling right when expression exceeds length of the window
@loginerror alexandru
Welcome back to our UiPath community.
If the expression exceeds length of the window then you can write the expression into multiple lines by adding underscore “_” symbol at the end. It should be something like this.
Eg.
dtInput.AsEnumerable.Where(Function(row) row("FirstName").ToString.Trim.Equals("Lakshman") _
and row("LastName").ToString.Trim.Equals("Ganta") _
).CopyToDataTable
Amazing
This works fine and was tedious task to scroll every time, Thanks a lot @lakshman
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.