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
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