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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

How do I get a list from an SQL query and let the user select the option from the list?

 
3 REPLIES 3
jthi
Super User

Re: How do I get a list from an SQL query and let the user select the option from the list?

Do you have SQL query as a string? In Query Builder? SQL Query result in JMP data table? Or possibly something else?

-Jarmo
GgGgGg2024
Level II

Re: How do I get a list from an SQL query and let the user select the option from the list?

It is a column name with multiple parameters.

For example, I have a column named fruits and there are apple, mango and orange.

multiple data for each fruits and would like to filter the column where the user can select if he wants to see apple, mango or orange data 

jthi
Super User

Re: How do I get a list from an SQL query and let the user select the option from the list?

You can maybe use just data filter

jthi_0-1708958039835.png

or build some more customized U using different options such as list box, check box, radio box...

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("Example",
	H List Box(
		lb = List Box(:name << get values),
		rb = Check Box(:name << get values),
		cb = Radio  Box(:name << get values)
	)
);
-Jarmo

Recommended Articles