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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Find first year value

Hi All,

 

I would like to find the value in the earliest Year. For example, if I filter to [Year ] = 2020, I should see the following. My Year slicer is single selection.

  • BA1 = 21
  • BA2 = 32
  • BA3 = 13

Does anyone know how can I do that using a measure? Thanks.

beekee_1-1621928196487.png

 

Regards,

BK

5 REPLIES 5
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

What kind of card visual you are looking for? Each code has a card visual or put them in one card visual?

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
PaulDBrown
Community Champion
Community Champion

Try:

min year value =
VAR MinYear = MINX(ALLEXCEPT(Table, Table[Code]), Table [Year])

RETURN

CALCULATE(SUM(Table[Value]), FILTER(ALL(Table), Table[Year] = MinYear))





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






SivaMani
Resident Rockstar
Resident Rockstar

@Anonymous, Try the below code in measure

 

CALCULATE(SUM(Table[Value]), Table[Year] < 2020) 

amitchandak
Super User
Super User

@Anonymous , Try a measure like for value

 

Measure =
VAR __id = MAX ('Table'[Code] )
VAR __date = CALCULATE ( Min('Table'[Year] ), ALLSELECTED ('Table' ), 'Table'[Code] = __id )
CALCULATE ( Sum ('Table'[Value] ), VALUES ('Table'[Code] ),'Table'[Code] = __id,'Table'[Year] = __date )

 

 

if needed take min for year in visual

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Hi @amitchandak , thanks for your help. The dax works well in a table visual but it doesn't show the correct earliest value when it is used in a Card visual

 

Regards,

BK

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.