The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have tables.
How should look DAX formula that adds the values of the previous line, it's about the earliest date for this category of data in the [Type]?
I mean like this:
Solved! Go to Solution.
@Anonymous
Try this one please
Creation2 = CALCULATE ( MIN ( Table1[Creation Time] ), FILTER ( ALLEXCEPT ( Table1, Table1[Type] ), Table1[Creation Time] > EARLIER ( Table1[Creation Time] ) ) )
@Anonymous
Try this one please
Creation2 = CALCULATE ( MIN ( Table1[Creation Time] ), FILTER ( ALLEXCEPT ( Table1, Table1[Type] ), Table1[Creation Time] > EARLIER ( Table1[Creation Time] ) ) )