Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |