- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to add columns with empty data
I have a table similar to this:
x | y | z | xyz | xyz | ||
aa | 1 | 2 | . | 3 | ||
bb | . | . | ||||
cc | 2 | 3 | . | 5 |
The columns have rows containing both numeric and empty data.
I want to create a new column (xyz) where I add the data in column x, y and z.
In other words, I want the result to look like the green xyz-column.
The problem is, when I run my script, I get the result in the red xyz-column..
How do I add columns with empty data?
I use the following script to create the xyz-column:
dt << New Column("xyz",
Numeric,
Formula(:Name("x")+:Name("y")+:Name("z")
)
);
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add columns with empty data
Created:
May 8, 2017 08:18 AM
| Last Modified: May 8, 2017 5:19 AM
(7338 views)
| Posted in reply to message from sirihofstadtrap 05-08-2017
Use:
dt << New Column( "xyz", Numeric, Formula( Sum( :x, :y,:z ) ) );
The Sum() function ignores missing values.
Jim
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add columns with empty data
Created:
May 8, 2017 08:18 AM
| Last Modified: May 8, 2017 5:19 AM
(7339 views)
| Posted in reply to message from sirihofstadtrap 05-08-2017
Use:
dt << New Column( "xyz", Numeric, Formula( Sum( :x, :y,:z ) ) );
The Sum() function ignores missing values.
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add columns with empty data
Thank you, it works :)