Forum Discussion

weinerheineken's avatar
weinerheineken
Frequent Visitor
3 years ago
Solved

Create First-like implicit measure in DAX

Hi there,   I'd like to create a measure in DAX which behaves exactly like the First or Last implicit measure when using a text-type column as shown in the image below, please.    
  • amitchandak's avatar
    3 years ago

    weinerheineken , Try like

     

    firstnonblank(Table[Name], "Na")

     

    or

     

    Min(Table[Name])