Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all
The provided Power BI data model includes 'Date' and 'Stores' as dimension tables and 'Managers' as a fact table, linked by a one-to-many relationship.
Can you help me to create a calculated column in the 'Stores' table to display the latest manager entry from the 'Managers' table, as depicted in the illustration.
Thanks in advance
regards
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
Mg =
var _date=
MAXX(
FILTER(ALL('Managers'),
'Managers'[Stores]=EARLIER('Stores'[Stores])),[Date])
return
MAXX(
FILTER(ALL('Managers'),
'Managers'[Stores]=EARLIER('Stores'[Stores])&&'Managers'[Date]=_date),'Managers'[Manager])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Anonymous
is this what you want?
Proud to be a Super User!
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
Mg =
var _date=
MAXX(
FILTER(ALL('Managers'),
'Managers'[Stores]=EARLIER('Stores'[Stores])),[Date])
return
MAXX(
FILTER(ALL('Managers'),
'Managers'[Stores]=EARLIER('Stores'[Stores])&&'Managers'[Date]=_date),'Managers'[Manager])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 70 | |
| 38 | |
| 28 | |
| 26 |