Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have 2 tables - DIM_Users and FACT_Tasks with fields as per below:
DIM_Users:
- User name
FACT_Tasks
- Task ID
- Close Date
I am trying to identify the oldest (resp. the first) closed task from FACT_Tasks table for each user in table DIM_Users. Could you please help me? The result should be new column in table DIM_Users. If there is no closed task for user yet, the field should be empty.
Thank you
IvanS
Solved! Go to Solution.
try like
Oldest =
MAXX(
RELATEDTABLE(FACT_Task),
FACT_Task[Close Date]
)
try like
Oldest =
MAXX(
RELATEDTABLE(FACT_Task),
FACT_Task[Close Date]
)
Thank you - but as I want oldest (resp. first task) I need to use MINX function. Please correct your reply so it is not confusing other users 🙂