cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
rfeick
Level IV

Counting Value Occurences

I have a script that tracks progress of tasks through multiple phases. One of the things being calculated is how many task are in a given phase. I attached the table I'm working with. I want to count the number of times Currrent is listed in any column and create a list like this:

 

Phase NCs
Started #
Initial Data Collection #
etc.  

 

where the number in the NCs column is the number of times Current was listed in the corresonding column.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Counting Value Occurences

count = Col Number(If( :Name( "Report Writing (Form 1 No Eval Date)" )=="Current",1, . ));
Jim

View solution in original post

2 REPLIES 2
rfeick
Level IV

Re: Counting Value Occurences

My current idea is to delete all values that aren't Current and then use Col Number function, but I can't figure out how to clear values from only certain cells.

txnelson
Super User

Re: Counting Value Occurences

count = Col Number(If( :Name( "Report Writing (Form 1 No Eval Date)" )=="Current",1, . ));
Jim

Recommended Articles