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 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 🙂