cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles