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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. 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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.