Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Good day,
I have the following question, for which I need some help.
Below you see a duplicate value.
This duplicate vaue was entered in the database within 2 seconds.
I want to have an extra colum which gives me a "yes" if the same value was entered in the database within 2 seconds.
And, if possible, I want to have the possibility to set the timeframe from 2 to 3 (or more) seconds manually (filter?).
Your help is highly appreciated!
Regards, John
Solved! Go to Solution.
Hi,
Drag only value to the table visual and write these measures
Max date_time = MAX(Data[date_time])
Min date_time = MIN(Data[date_time])
Difference = [Max date_time]-[Min date_time]
Entered within 2 seconds = IF([Difference<=TIME(0,0,2),"Yes","No")
Hope this helps.
@Anonymous , New columns in table
last date = maxx(filter(Table,Table[value] =earlier(Table[value]) && Table[Date] <earlier(Table[Date])),Table[Date])
Date diff = if(abs(datediff([last date],[Date],second)),<=2, "Yes","No")
@Anonymous , New columns in table
last date = maxx(filter(Table,Table[value] =earlier(Table[value]) && Table[Date] <earlier(Table[Date])),Table[Date])
Date diff = if(abs(datediff([last date],[Date],second)),<=2, "Yes","No")
Hi,
Drag only value to the table visual and write these measures
Max date_time = MAX(Data[date_time])
Min date_time = MIN(Data[date_time])
Difference = [Max date_time]-[Min date_time]
Entered within 2 seconds = IF([Difference<=TIME(0,0,2),"Yes","No")
Hope this helps.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
64 | |
52 | |
47 |
User | Count |
---|---|
219 | |
89 | |
76 | |
67 | |
60 |