Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I have the following data
I need the completed date on the same row as the start date where the Completed date is null.
Any help will be greatly appreciated.
Solved! Go to Solution.
My final result was to gather the amount of time it took to process a ticket. I ended up doing the following:
BeginDate =
CALCULATE (
MIN ( Query2[Transaction_Date] ),
ALLEXCEPT ( Query2, Query2[Wo_Number] )
)
*********************************************************************
Date_Difference =
DATEDIFF ( [BeginDate], [Completed Date], DAY )
My final result was to gather the amount of time it took to process a ticket. I ended up doing the following:
BeginDate =
CALCULATE (
MIN ( Query2[Transaction_Date] ),
ALLEXCEPT ( Query2, Query2[Wo_Number] )
)
*********************************************************************
Date_Difference =
DATEDIFF ( [BeginDate], [Completed Date], DAY )
hi @Clark75
try to add a new calculated column like:
That gave me the output of :
I need the Completed date on the same row as the start date. Sorry if I did not communicate that correctly
Above is with DAX, or try add a custom column in Power Query Editor like:
column =
if [start date]<>null
then [start date]
else [completed date]
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
11 | |
11 | |
8 | |
8 | |
8 |