Best way to "replace" data? #297
-
It is my impression that tables are designed to be immutable. If you want something different, apply some verbs and My simple use case is that I would like to modify incoming data by lifting up negative values to zero. I'm wondering if there is a better way than the following, which won't work when the incoming columns are unknown:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
After wrapping my head around Table Expressions, I came up with the following solution for my issue:
This isn't built as table method but it gets the job done.
|
Beta Was this translation helpful? Give feedback.
After wrapping my head around Table Expressions, I came up with the following solution for my issue:
This isn't built as table method but it gets the job done.