Forum Discussion

joshua1990's avatar
joshua1990
Icon for Post Prodigy rankPost Prodigy
6 years ago
Solved

Dax Measure to get specific text value

Hello everyone! I have a table like this: Area Description A Mounting Production Area ... B ... C ... D ...   Now, I am looking for a measure that shows me the text for Are...
  • mahoneypat's avatar
    mahoneypat
    6 years ago

    How about this one?

     

    Description for B = CALCULATE(MIN(Table[Description]), Table[Area] = "B")

     

    If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

    Regards,

    Pat