Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
try
=fieldvaluecount(FieldName)
Bro,
if i use same thing i am getting "-" only.
Put single quotes around field name like: =fieldvaluecount('FieldName')
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 |
Hi,can any one give suggestions.
Try this in calculated Dimension
Aggr(If(Count(Name) > 1,Name),Name)
and check Suppress Value Null
In a tex tbox, try like:
='Duplicate names : '&Concat( Distinct {<Name={"=Count(Name)>1"}>}Name, ',')
try
like below its working fine to me
=Fieldvaluecount('FieldName')
single quote
I am getting duplicates with unique values also,but i want only duplicates