The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello guys,
I need to write a measure to check if two Dates match.
the two tables are connected between the serial number.
I already tried:
IF(table1[ChequeDate] = RELATED(table2[InstallationDate]),0,1)
Please help!
Solved! Go to Solution.
Matching Date Test =
IF (
SELECTEDVALUE ( table1[ChequeDate] ) = SELECTEDVALUE ( table2[InstallationDate] )
// prevent returning 0 if blank = blank because multiple dates were included in the context:
&& HASONEVALUE ( table1[ChequeDate] ) && HASONEVALUE ( table2[InstallationDate] )
0,
1
)
Matching Date Test =
IF (
SELECTEDVALUE ( table1[ChequeDate] ) = SELECTEDVALUE ( table2[InstallationDate] )
// prevent returning 0 if blank = blank because multiple dates were included in the context:
&& HASONEVALUE ( table1[ChequeDate] ) && HASONEVALUE ( table2[InstallationDate] )
0,
1
)
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |