Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi
I have a date table (below) and im trying to create a column to show the minium date for previous period '-2' and for '-1', and for '0' etc etc.
In excel it would be minifs(date,previous period=previous period). See below.
Solved! Go to Solution.
@User7664
Add the following column:
Column =
CALCULATE(
MIN( ActualDateRange[Date] ),
ALLEXCEPT(ActualDateRange , ActualDateRange[Previous Period] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@User7664
Add the following column:
Column =
CALCULATE(
MIN( ActualDateRange[Date] ),
ALLEXCEPT(ActualDateRange , ActualDateRange[Previous Period] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group