-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support natively a few straightforward transformations #216
Labels
Milestone
Comments
Seddryck
pushed a commit
that referenced
this issue
Sep 2, 2017
Seddryck
pushed a commit
that referenced
this issue
Sep 8, 2017
New beta (new syntax) available at https://ci.appveyor.com/project/Seddryck/nbi/build/1.16.0-beta.40.build.36 |
Seddryck
pushed a commit
that referenced
this issue
Sep 9, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The idea is to support a few straightforward transformations such as
blank-to-empty
: if the current content of the cell isblank
(zero or many spaces) replace the content(empty)
blank-to-null
: if the current content of the cell isblank
(zero or many spaces) replace the content(null)
empty-to-null
: if the current content of the cell isempty
(length=0) replace the content(null)
null-to-empty
: if the current content of the cell isnull
replace the content(empty)
null-to-value
: if the current content of the cell isnull
replace the content(value)
any-to-any
: replace the content of the cell by(any)
value-to-value
: if the cell's value is notnull
will replace the content by(value)
For this we'll need to support a new language
native
The text was updated successfully, but these errors were encountered: