cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

Count number of columns which have value

BhargavDS
Level I
I have a table where I want to create a new column which tells the number of cells in that row which has a value in it. How do I do this?
My columns look like this for example:

Name, A, B, C, D

I need to know how many in A,B,C and D have values in every row. Some rows have values for all of them, and in some none of them have values.
1 ACCEPTED SOLUTION

Accepted Solutions
uday_guntupalli
Level VIII


Re: Count number of columns which have value

@BhargavDS
      I am assuming you have a table that looks like this : 

image.png

 

  You can script your new formula like so : 

If( Is Missing( :name ),0,1) + If( Is Missing( :age ), 0, 1 ) +
 If( Is Missing( :sex ), 0, 1 ) + If( Is Missing( :height ),0,1) + 
If( Is Missing( :weight ),0,1)

 

 

Best
Uday

View solution in original post

3 REPLIES 3
uday_guntupalli
Level VIII


Re: Count number of columns which have value

@BhargavDS
      I am assuming you have a table that looks like this : 

image.png

 

  You can script your new formula like so : 

If( Is Missing( :name ),0,1) + If( Is Missing( :age ), 0, 1 ) +
 If( Is Missing( :sex ), 0, 1 ) + If( Is Missing( :height ),0,1) + 
If( Is Missing( :weight ),0,1)

 

 

Best
Uday
txnelson
Super User


Re: Count number of columns which have value

The below formula is a simpler form but gives the same results as @uday_guntupall

Sum(:Name == "", isMissing(:age),:sex=="",isMissing(:Height),isMissing(:Weight))

@uday_guntupalli

Jim
Thomas1
Level V


Re: Count number of columns which have value

Did you try the following formula column?

 

N Missing( :A, :B, :C, :D )