Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I want to create a table where it'll show if there are duplicate time intervals within one day. For example, in the current spreadsheet I have loaded into the file attached below, there's (2) 800am intervals in Day 1.
I want the table to list the day and all the time intervals that are repeated (if there are any). If there's no duplicate time intervals within a day, I want it to just say "No duplicates" :
Solved! Go to Solution.
@ok_kpop , Create a measure like
Measure =
var _1 = countrows(Table)
return
if(_1 >1, "duplicates", "No duplicates")
Plot this with day in a visual
@ok_kpop , Create a measure like
Measure =
var _1 = countrows(Table)
return
if(_1 >1, "duplicates", "No duplicates")
Plot this with day in a visual
Thanks for your help! I do want to add onto this formula and I made another post about it. If you could help me with this as well, I'd really appreciate it! https://community.fabric.microsoft.com/t5/Desktop/Formula-to-Detect-Missing-Time-Intervals-amp-amp-D...
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.