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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Transforming a Calculated Column into a Variable inside a Measure

I have the following Calculated column to figure out if which rows hold the latest versions of data

MaxDate = CALCULATE(MAX(ProjectsTable[Metric Date]),FILTER(ProjectsTable, Projects[Project Name]=EARLIER(ProjectsProject Name])))

Followed by this second calculated column which acts as a Flag 

LatestValue = If(ProjectTable[Metric Date] = ProjectTable[MaxDate], 1, 0)

Ultimately I'm trying to fit both of these inside a Measure as variables so the result can be dynamically filtered.

My problem is that the first column is a formula that doesn't work inside a measure. I'm getting errors with it. 

 

I tried playing around with it with something like this but to no avail

Var FilterDate = MAX(ProjectTable'[Metric Date])
Var LastUpdate = 
    CALCULATE(
    IF(MAX(Project Table[Metric Date]) <= FilterDate, 1, 0), VALUES(ProjectTable[Project Name]))

Note, the VALUES is because I need to filter latest date per Project name (different projects have different latest dates).

 

Thanks for any help!

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors