Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Data looks like this:
DispatchID Part Created Date
1234 M 1/1/20 04:34:10 PM
1234 L 1/1/20 04:34:10 PM
1234 T 1/1/20 04:34:10 PM
1234 R 1/5/20 05:15:59 PM
1313 M 1/1/20 06:33:10 PM
1313 L 1/1/20 06:33:10 PM
1313 T 1/2/20 08:44:18 PM
2424 M 1/4/20 10:11:22 PM
2424 L 1/4/20 10:11:22 PM
2424 T 1/4/20 10:11:22 PM
2424 Q 1/7/20 08:10:40 PM
I want to find when all the parts for any DispatchID have the exact same times for certain parts. Below is the result i want to see if only considering parts - M,L,T:
DispatchID Same Time Result
1234 yes
1313 no
2424 yes
Please assist with a measure I that would work.
Solved! Go to Solution.
Hi @sfsamperi13
with your sample data I get the following solution:
Measure =
VAR _Part_M = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "M")
VAR _Part_L = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "L")
VAR _Part_T = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "T")
RETURN
IF(_Part_L = _Part_M && _Part_M = _Part_T, "Yes", "No")
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
Hi @sfsamperi13 ,
Please let us know if the replies above are helpful.
If they are, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If not, please give us more details.
Best Regards,
Icey
@sfsamperi13 I don't understand your calculation. 1313 also has exactly same date as below then Why the result is "No"
1313 M 1/1/20 06:33:10 PM
1313 L 1/1/20 06:33:10 PM
Please find the response.
Looks like I misread your question. Anyways you have the solutions 🙂
1313 is no because T does not have the same time as M and L. All 3 parts need to have the same time.
Give this a try.
Same Time Result =
IF ( DISTINCTCOUNT ( YourTable[Created Date] ) = 1, "yes", "no" )
Hi @sfsamperi13
with your sample data I get the following solution:
Measure =
VAR _Part_M = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "M")
VAR _Part_L = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "L")
VAR _Part_T = CALCULATE(MIN('Table'[Created Date]), 'Table'[Part] = "T")
RETURN
IF(_Part_L = _Part_M && _Part_M = _Part_T, "Yes", "No")
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 109 | |
| 40 | |
| 33 | |
| 27 |