Forum Discussion
Syntax Error Occurred during Parsing: Invalid Token Line 7 Offset 56
- 3 years ago
Hi, Anonymous
You can try the following formula.Duplicate = VAR _dCount = COUNTROWS ( FILTER ( 'DB 15092022_1', 'DB 15092022_1'[STO Number] = EARLIER ( 'DB 15092022_1'[STO Number] ) && 'DB 15092022_1'[Index] <= EARLIER ( 'DB 15092022_1'[Index] ) ) ) RETURN IF ( _dCount > 1, 1, 0 )If you have a large amount of data, you can try to calculate with measure.
Measure:Duplicate = VAR _dCount = COUNTROWS ( FILTER ( ALL ( 'DB 15092022_1' ), 'DB 15092022_1'[STO Number] = SELECTEDVALUE ( 'DB 15092022_1'[STO Number] ) && 'DB 15092022_1'[Index] <= SELECTEDVALUE ( 'DB 15092022_1'[Index] ) ) ) RETURN IF ( _dCount > 1, 1, 0 )Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Anonymous
You can try the following formula.
Duplicate =
VAR _dCount =
COUNTROWS (
FILTER (
'DB 15092022_1',
'DB 15092022_1'[STO Number] = EARLIER ( 'DB 15092022_1'[STO Number] )
&& 'DB 15092022_1'[Index] <= EARLIER ( 'DB 15092022_1'[Index] )
)
)
RETURN
IF ( _dCount > 1, 1, 0 )
If you have a large amount of data, you can try to calculate with measure.
Measure:
Duplicate =
VAR _dCount =
COUNTROWS (
FILTER (
ALL ( 'DB 15092022_1' ),
'DB 15092022_1'[STO Number] = SELECTEDVALUE ( 'DB 15092022_1'[STO Number] )
&& 'DB 15092022_1'[Index] <= SELECTEDVALUE ( 'DB 15092022_1'[Index] )
)
)
RETURN
IF ( _dCount > 1, 1, 0 )
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
thank you for the solution
I have tried by using Measure it works, but now from the Output 1, 0's i need to fo sum of the 0's and 1's
how can i do with the measure?
because to calcualte the SUM OF 0's and 1's i need to create a column right
with the measure output i am unable ot create Sum of 0's and 1's?
Any help?
Duplicate =
VAR _dCount =
COUNTROWS (
FILTER (
ALL ( 'DB 15092022_1' ),
'DB 15092022_1'[STO Number] = SELECTEDVALUE ( 'DB 15092022_1'[STO Number] )
&& 'DB 15092022_1'[Index] <= SELECTEDVALUE ( 'DB 15092022_1'[Index] )
)
)
RETURN
IF ( _dCount > 1, 1, 0 )