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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

How I can separate number and character in cell in JMP

Hi ,

I have question about JMP , I have column with numbers (0) and letters so I need to create new column and using formula include only the letters and delete all (0) ! so is it possible to do that in JMP ? and which function I should use ?

I tried (word) function but it does not work with me!

 

Here the column :

Screenshot 2021-12-05 172002.png

and I want something like this :

Screenshot 2021-12-05 172028.png

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How I can separate number and character in cell in JMP

If you just want to replace 0 with empty strings, you can use Substitute

 

Names Default To Here(1);

str = "00000000J";
Substitute(str, "0", "");
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How I can separate number and character in cell in JMP

If you just want to replace 0 with empty strings, you can use Substitute

 

Names Default To Here(1);

str = "00000000J";
Substitute(str, "0", "");
-Jarmo
Balqees
Level I

Re: How I can separate number and character in cell in JMP

Thanks!

Recommended Articles