Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello ,
Need your help on this
for instance Contract number "12" is present in both the sources 1 & 2 --Need to show if the contract Number from source 1 exists in source 2 or not.
if the contract number exists in source 2 then need to restrict this contract number from source 2 else will show the record.
Solved! Go to Solution.
You could create a column like
Has duplicate =
var indexToCheck = IF( 'Table'[Index] = 1, 2, 1 )
return 'Table'[Contract Number] IN CALCULATETABLE( VALUES('Table'[Contract Number]), REMOVEFILTERS('Table'), 'Table'[Index] = indexToCheck)
You could create a column like
Has duplicate =
var indexToCheck = IF( 'Table'[Index] = 1, 2, 1 )
return 'Table'[Contract Number] IN CALCULATETABLE( VALUES('Table'[Contract Number]), REMOVEFILTERS('Table'), 'Table'[Index] = indexToCheck)
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
18 | |
15 |
User | Count |
---|---|
36 | |
19 | |
19 | |
17 | |
11 |