Forum Discussion

pritamdesh's avatar
pritamdesh
New Member
5 years ago
Solved

How to determine minimum value for a row in matrix visual

Hi Team, I want to display the minimum value of a row in the 'Total' column of a matrix visual. The Matrix is built as follows:   Rows  has 3 fields - Payor group name, Insurance company name, In...
  • mahoneypat's avatar
    5 years ago

    Please try using this measure expression in place of your current one.  Don't delete the original as this one references it.

     

    New Measure = MINX(VALUES(Date[Year-Quarter]), [Average of Rate Allowed])

     

    You will get same values in the Year-Quarter columns as there is a single value there (always the min), but your total will be the min of all Year-Quarters.

     

    Pat