March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |