cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Numerical Variable Not Evaluating in List

I am trying to Write() a list with a number variable i inside of it like this

Write({i});

but it prints, literally, {i}, not {1} or {2} or whatever the variable number of i is.

i is most certainly defined and assigned because going

Write(i);

works.

What am I doing wrong?

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Numerical Variable Not Evaluating in List

Try addingEval List() around {}

 

i = 1;
Write(Eval List({i}));
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: Numerical Variable Not Evaluating in List

Try addingEval List() around {}

 

i = 1;
Write(Eval List({i}));
-Jarmo
mostarr
Level IV

Re: Numerical Variable Not Evaluating in List

Thank you, @jthi.

Recommended Articles