Hi, I'm trying to create a prompt where the user can paste great amount of values. I insert the prompt in the where clause on a query builder with an In a list operator but when I run it the prompt only give me the option to enter one value at a time. I try to put the prompt in a filter a sort task as seen in code below but this task does not recognize the prompt. %LET CIF = s1; %LET CIF_count = 1; PROC SQL NOEXEC; SELECT t2.CIF, t2.CLIENTE, t1.NO_CUENTA, t2.CEDULA, t2.PASAPORTE, t2.RNC, t2.SEGMENTO, t1.TIPO_CUENTA FROM WORK.QUERY_FOR_CUP0_0000 t2 INNER JOIN WORK.QUERY_FOR_CUP0_0001 t1 ON (t2.CIF = t1.CIF) WHERE t1.TIPO_CUENTA IN ( 'SOW', 'IND', 'JAF', 'JOF' ) AND %_eg_WhereParam( t2.CIF, CIF, IN, TYPE=S, IS_EXPLICIT=0 ) ORDER BY t2.CLIENTE; QUIT; Any idea? Thanks.
... View more