Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
rajeshqvd
Creator II
Creator II

Find Text Give output for next all rows

Hi Need below Output field need to do in Script please help on this if Name = jone after row will return same name until ID<>Previous(ID)

IDNameOUT PUT
111lee 
111assds 
111jonejone
111ssdsjone
111sddjone
111sdsasjone
111saswwjone
222eeee 
222sdsd 
222jonejone
222ddsdjone
222sdddjone
Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Try:

Load *,
	If(ID =Peek(ID), if( Name='jone', 'jone', Peek(Output))) as Output

View solution in original post

1 Reply
tresB
Champion III
Champion III

Try:

Load *,
	If(ID =Peek(ID), if( Name='jone', 'jone', Peek(Output))) as Output