Forum Discussion
Create measure and depend on whether it is duplicate
- Anonymous5 years ago
Hi NickProp28 ,
Here are the steps you can follow:
1. Create calculated colunm.
New Colunm = IF([JNC]=[TNC],[JobNumber],"Duplicate")2. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
NickProp28 , Not very clear, what column you need. You can have column like this to check duplicate
If(countx(filter(Table,[TransactionN] = earlier(TransactionN)),[TransactionN])+0 >0, "Duplicate",[JobN])
Inside job duplicate
If(countx(filter(Table,[TransactionN] = earlier(TransactionN) && [JobN] = earlier(JobN)),[TransactionN])+0 >0, "Duplicate",[JobN])
You can have to combine unique column
Key = [JobN] & "-" & [TransactionN]
- NickProp285 years ago
Post Partisan
Dear amitchandak ,
Is it my reply and pbix has clear your doubt?
If yes please kindly advice me on it. Appciate your time.