I need to apply a formula to an entire column and copy into a new datatable. I don’t want to use a For Each loop since sometimes these tables have a LOT of lines.
I have a column where negative values have the “-” at the end, so I need an if statement to parse and convert to double. The if is pretty straight forward, but I’m not sure how to phase the Enumerable expression
Before:
No this only transforms the string which is not the issue here. The original ask was how to apply an efficient transformation on an entire datatable column. Efficient being, not using a for each loop as sometimes these tables have 50,000+ rows.