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.
Hi guys,
Well, this problem is hard to explain, but here we go.
Consider this a tab with the following columns:
ID,
TITLE,
PHASE,
START_DATE, ( id enters the phase)
END_DATE, (id leaves the phase)
I want to calculate the difference between start and end date, this would be quite simple but...
I need to calculate the difference between the START_DATE of the phase "PROSPECT" and the START_DATE of "GAIN" phase.
And it needs to be calculated ONLY for the ID's that started in the "PROSPECT" phase until "GAIN" phase.
Any other ID needs to be kept out of this measure.
Explaining what I want:
The ID's are clients, I want to calculate how long it takes for our clients who enters as a prospect to reach the gain phase, which means, become our client.
Thank-you in advance.
Solved! Go to Solution.
@Tahech , You can take diff between various stage
example
new Column=
Var _max = maxx(table, Table[ID] = earlier(Table[ID]) && [Start Date] < earlier([Start Date]) ), [Start Date])
return
datediff(_max, [Start Date], day)
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
@Tahech , You can take diff between various stage
example
new Column=
Var _max = maxx(table, Table[ID] = earlier(Table[ID]) && [Start Date] < earlier([Start Date]) ), [Start Date])
return
datediff(_max, [Start Date], day)
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
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 | |
76 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |