Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
April 9th: The AI Roadmap: 6 Landmarks for AI-ready Data and Analytics: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to find string with the same value on the same column?

Hi All,

I have a column that contains strings, sometimes some values contains the same word , but with different capital letters .

I want to undentify the values that are repeating themselves , even if they are written in a different capitals, but the value is the same.

I have knowledge of SQL, so it is hard for me to understand how to do it on QV.

how should I do that ?

thanks,

Moni

1 Reply
sunny_talwar

May be something like this:

Table:

LOAD Field,

  Capitalize(Field) as Dup;

LOAD * Inline [

Field

Rahul

RaHul

rahul

Ganesh

Ganesh

];

Join (Table)

LOAD Count(DISTINCT Field) as Count,

  Dup

Resident Table

Group By Dup;

Join (Table)

LOAD Dup,

  1 as DuplicateFlag

Resident Table

Where Count > 1;

Capture.PNG