Forum Discussion

Sk1_2's avatar
Sk1_2
Frequent Visitor
1 year ago
Solved

Filter one column in a matrix

Hello,    How do I filter one column in a matrix? For example, I want to display the remainder of 2024 and January 2025. But the January column is only displaying 2024 numbers. How can I only filte...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Sk1_2 ,

    Based on the description, try to create the new measure.

    StaffCountOtherMonths = 
    var _month = SELECTEDVALUE('Table'[Month name])
    RETURN
    IF(_month <> "Jan-2024", SUM('Table'[staff count]))

    Best Regards,

    Wisdom Wu

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.