Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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 ...