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 there,
I have a table with the following columns:
and I would need two meassures:
- One measure to filter the Ealiest Start Date filtered by Project and Task columns
- One measure to filter the Latest Finish Date filtered by Project and Task columns
The desire outcome should be:
any help will be really appreciated.
Thanks!
Solved! Go to Solution.
You can use the allexcept function
e.g. Early Start = CALCULATE(MIN(Table[Start]), ALLEXCEPT(Table, Table[Project], Table[Task]))
You can use the allexcept function
e.g. Early Start = CALCULATE(MIN(Table[Start]), ALLEXCEPT(Table, Table[Project], Table[Task]))