Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikview979
Specialist
Specialist

field index in Qlikview

Hi all,

How to get only Duplicate Values by using Field index function in   front end level in straight table.

Can any one share sample app.

loveisfailstalwar1kush141087

Regards

Mahesh

13 Replies
Chanty4u
MVP
MVP

try

=fieldvaluecount(FieldName)

qlikview979
Specialist
Specialist
Author

Bro,

if i use same thing i am getting "-" only.

tresesco
MVP
MVP

Put single quotes around field name like: =fieldvaluecount('FieldName')

qlikview979
Specialist
Specialist
Author

In my dimension inside the column like this Bro

Name

A

A

A

B

B

B

D

E

G

H

J

i want  here only duplicates

Speaker   Name
qlikview979
Specialist
Specialist
Author

Hi,can any one give suggestions.

antoniotiman
Master III
Master III

Try this in calculated Dimension

Aggr(If(Count(Name) > 1,Name),Name)

and check Suppress Value Null

tresesco
MVP
MVP

In a tex tbox, try like:

='Duplicate names : '&Concat( Distinct {<Name={"=Count(Name)>1"}>}Name, ',')

Chanty4u
MVP
MVP

try

like below its working fine to me

=Fieldvaluecount('FieldName') 

single quote

qlikview979
Specialist
Specialist
Author

I am getting duplicates with unique values also,but i want only duplicates