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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 ...