cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
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