I have two tables projects and work log. I need column in project table who is this project designer. So who have first record in work log table with type design. I have relationship One project → many work_log
I wrote such formula:
@BrianJ for some reasons I could not attach original data, but I made very simple pbx instead. And there my formula seems to be ok. sample.pbix (39.9 KB)
In my original report i have little bit modified it Designer= CALCULATE( CALCULATE(FIRSTNONBLANK(work_log[employee_id;TRUE());FILTER(work_log;work_log[type]="Design")))
and it start performing as well.