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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
DouweMeer
Impactful Individual
Impactful Individual

select value in table

So... for something different.

 

I created the following in a custom column: 

 

VAR a1
=
SELECTCOLUMNS(
   filter ( 'Case History'
      , and (
         'Case History'[CaseId] = 'Case'[Id]
         , 'Case History'[CreatedById] <> "005i0000007bCWhAAM"
         )
      )
   , "Date2" , 'Case History'[CreatedDate]
   , "User3" , 'Case History'[CreatedById]
   )
VAR a2
= MINX( a1 , [Date2] )
VAR a3
= filter ( a1 , [Date2] = a2 )
RETURN
...
 
So at VAR a3 I've created a table where field "User3" contains 1 value, the one I want... but it is text. How do I select this one?
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Juse use a MAXX or MINX on that single row table, if I understand what you are saying.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Community Champion
Community Champion

Juse use a MAXX or MINX on that single row table, if I understand what you are saying.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

When I tried it, it didn't work and BI suggested it was due to string value. Now this Super User comes along and suggests my earlier thought and it just does somehow work.... how....? (rhetorical) 

@Greg_Deckler  Thanks Greg.

I was wondering because it seemed like you had done that for VAR2. Perhaps you used a numerica aggregation before like SUMX?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

I think it is most likely that I made an error in my context which made it happen that one of the applied filters wasn't working, thus you would have multiple results. Something that might break it, I assume.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors