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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Passing a Variable not working

Hi everyone,

 

I hope you will be able to help me to understand why the variables in DAX do not work as expected.

 

If I create a measure as the below, it doesn't work (doesn't return the desired outcome):

x_Achieved = 
VAR CurrentQTR = LOOKUPVALUE(Dates[Academic_Year_Quarter],Dates[Date],MAX(c_Enrolments[Date Exported On]))
VAR IsAchieved = FILTER(c_Enrolments,c_Enrolments[CompletionID]=2 && c_Enrolments[OutcomeID]=1 )
RETURN CALCULATE(COUNTROWS(c_Enrolments),FILTER(Dates_AED,Dates_AED[Academic_Year_Quarter]=CurrentQTR),IsAchieved)

 

Once I change the CurrentQTR to an actual string, it seems to work correctly (returns what is expected):

x_Achieved = 
//VAR CurrentQTR = LOOKUPVALUE(Dates[Academic_Year_Quarter],Dates[Date],MAX(c_Enrolments[Date Exported On]))
VAR IsAchieved = FILTER(c_Enrolments,c_Enrolments[CompletionID]=2 && c_Enrolments[OutcomeID]=1 )
RETURN CALCULATE(COUNTROWS(c_Enrolments),FILTER(Dates_AED,Dates_AED[Academic_Year_Quarter]="22/23 - Q4"),IsAchieved)

 

When I evaluate the CurrentQTR calculated using the LOOKUPVALUE and pass it into a Card visual, it shows exactly the desired value, "22/23 - Q4".

 

I am baffled as I have no idea why it has decided not to work...

 

I am sure it must be something silly and simple, but I am stuck.

 

Many thanks for your time 🙂

 

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Anonymous 

most probably because the filter context is different. What filter context do you have for your first code? filter context includes visual columns, rows, axis, filter pane setting, slicer selection. 

 

In your first code, try to

RETURN CurrentQTR

what do you get?

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @Anonymous 

most probably because the filter context is different. What filter context do you have for your first code? filter context includes visual columns, rows, axis, filter pane setting, slicer selection. 

 

In your first code, try to

RETURN CurrentQTR

what do you get?

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.