cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
nac
nac
Level III

sum of columns is not work because of empty data

Hi,

 

I try to sum Column 1+Column 2+Column 3 in a seperate column by using formula option of jmp. But sometimes some rows results are empty. due to that formula editor is not calculate the result. Could you please help for it?

 

Please find enclosed jmp file as an example to explain my issue.

2 ACCEPTED SOLUTIONS

Accepted Solutions
jthi
Super User

Re: sum of columns is not work because of empty data

Have you tried using Sum formula:

Sum(:Column 1, :Column 2, :Column 3)
-Jarmo

View solution in original post

txnelson
Super User

Re: sum of columns is not work because of empty data

Use

sum( :column 1, column 2, :column 3);

The Sum() function ignores missing values 

Jim

View solution in original post

2 REPLIES 2
jthi
Super User

Re: sum of columns is not work because of empty data

Have you tried using Sum formula:

Sum(:Column 1, :Column 2, :Column 3)
-Jarmo
txnelson
Super User

Re: sum of columns is not work because of empty data

Use

sum( :column 1, column 2, :column 3);

The Sum() function ignores missing values 

Jim