The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]))