Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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] ) ) )
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.