Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Fetch dimension value dynamically based on Filter Context

Hi,


I am trying to fetch the corresponding title from last year onto a row with a new title this year.

 

Example is we have rows with Sales and Sales LY and then we want the Title and Title LY for that. How can I fetch the Title LY?

 

I added a picture as an example. The top is how it might look like in a table and the bottom is how I want the result to be.

 

Screnshot.PNG

I thought maybe I could do something like:


Title (LY) =

VAR vMaxDateLastYear = YEAR ( [MaxDate] ) - 1

VAR TitleID= MIN ( dim_issue[TitleID] )


RETURN


CALCULATE (
MIN ( dim_issue[Title] );
FILTER ( dim_issue; dim_issue[TitleID] = Utgavenummer );
dim_time[Year] = vMaxDateLastYear
)


Thanks for any replies.

Best,

Ali A

3 REPLIES 3
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

I created a calculated column with the function of EARLIER that you have a try.

Last Title = CALCULATE(MAX('Table'[Title]),FILTER('Table','Table'[Title ID] = EARLIER('Table'[Title ID]) && 'Table'[Year] +1 = EARLIER('Table'[Year])))

1.PNG

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-xuding-msft 

 

This seems like it is correct, but I am having some issues using it in my code. I suspect that it is because it is not in the same model.

 

Yessir.PNG

Anonymous
Not applicable

So after trying some back and forth what did it was including a CrossFilter!

Title (Current Year) =
VAR vCurrentYearBasedOnMaxDate =
YEAR ( [Last Chosen Date] )
VAR Utgavenummer =
MIN ( dim_issueTitleID)
RETURN
CALCULATE (
MIN ( dim_issueTitle);
dim_time[Year] = vCurrentYearBasedOnMaxDate;
CROSSFILTER ( dim_issue[pk_dim_issue]; fact_issue[fk_dim_issue]; BOTH )
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.