Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

True and false case

Dear Friends,

i have one column named ITEM having values 10,20,30,..
Help me to write expression in chart which will tell me
true if values are not repeated and false if values are repeated..example..
If ITEM contains 10,20,20,30 on selection....so inthis case it would be false as 20 is repeating..
2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

   Try this in TextBox.

   if(count (distinct ITEM ) < count(ITEM),'False','True')

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi,

you can also do the same

if(count (distinct ITEM ) < count(ITEM),'False','True') as Status,

while you are pulling the data ......