Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello dear Power BI Community
Following problem:
I would like to add in Power BI the 3th column given these informations:
It should calculate the date difference per Product off the row above.
Product | Date | Date_Difference_per_Product |
A | 01.06.2022 | 0 |
B | 09.06.2022 | 0 |
A | 10.06.2022 | 9 |
A | 15.06.2022 | 5 |
B | 20.06.2022 | 11 |
B | 25.06.2022 | 5 |
Thank you very much for your contribution.
Cheers
qwertzuiop
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Date Diff per Product CC =
VAR _previousdate =
MAXX (
FILTER (
Data,
Data[Product] = EARLIER ( Data[Product] )
&& Data[Date] < EARLIER ( Data[Date] )
),
Data[Date]
)
RETURN
IF ( _previousdate = BLANK (), 0, INT ( Data[Date] - _previousdate ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question.
@qwertzuiop try this
Column = var _A = 'yourTable'[Product]
var _B = CALCULATE(MAX('yourTable'[Date]),FILTER('yourTable','yourTable'[Date] <EARLIER('yourTable'[Date])),'yourTable'[Product] = _A)
var _C = DATEDIFF('yourTable'[Date],_B,DAY)
return
if(_C = BLANK(),0,abs(_C)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Date Diff per Product CC =
VAR _previousdate =
MAXX (
FILTER (
Data,
Data[Product] = EARLIER ( Data[Product] )
&& Data[Date] < EARLIER ( Data[Date] )
),
Data[Date]
)
RETURN
IF ( _previousdate = BLANK (), 0, INT ( Data[Date] - _previousdate ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question.
Dear Jihwan_Kim
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
57 | |
36 | |
34 |
User | Count |
---|---|
99 | |
56 | |
56 | |
46 | |
40 |