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
I have a datetime column ( dd/mm/yyyy HH:MM:SS TT). I want to match this with another datetime column with same structure. How can i do this in dax ?
@SachinFG , You can use =
if([date1] =[date2],1,0)
or if( datediff([Date1], [Date2], second) =0,1,)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
26 | |
16 | |
15 | |
12 | |
11 |
User | Count |
---|---|
32 | |
26 | |
24 | |
20 | |
14 |