Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
AbdulHaseebKhan
Contributor II
Contributor II

how to eliminate the repeated values

input:                    output:

january               january

 january              february

february            march

march

march

Labels (1)
3 Replies
MendyS
Partner - Creator III
Partner - Creator III

Hi @AbdulHaseebKhan 

try to use with this  in the data load editor ( script) - 
"
Load Trim(Input) as Month
Group by Trim(Input)
resident TestTable

let me know if that is what you want 
thanks

AbdulHaseebKhan
Contributor II
Contributor II
Author

Hi
justISO
Specialist
Specialist

Hi, when loading add DISTINCT after LOAD, this way you will load only unique values. For example:

LOAD DISTINCT

your_field, your_field

FROM ...