Count return error value

I have a table where I add the fil that I see, with two colums

 Table= Record    
 Colum1= Year
 Colum2= Film

Now I would like to add a virtual column that print 0 if I see only one time the film or print 1 if I see more than one time.

I try it:
COUNT(SELECT(Record[Film], TRUE, FALSE))
COUNT(Record[Film])
but allways appear the number of rows I had recorded (200 rows), I only need two if [Film] appear in [Film] beforeโ€ฆ nothing more.

Thanks you so much

Solved Solved
0 2 57
1 ACCEPTED SOLUTION

You have to make a comparison. Thatโ€™s what the second argument of SELECT is for. Read through the SELECT article once more:

View solution in original post

2 REPLIES 2

You have to make a comparison. Thatโ€™s what the second argument of SELECT is for. Read through the SELECT article once more:

The rush is not good, I was so confused that I didnโ€™t realize it, you were right, the condition to be met was missing. Thanks a lot.

Top Labels in this Space