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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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
tresesco
MVP
MVP

Try:

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

View solution in original post

1 Reply
tresesco
MVP
MVP

Try:

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