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 filter the January column for the year 2025? 

 

I can use a slicer but my manager wants it to be displayed. Any tips will be super helpful. 

 

Thank you in advance

  • 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.

8 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion

    Sk1_2 No, you would have to write a measure to do that kind of thing. Hard to really say though as there is extremely little information provided.

     

    Sorry, having trouble following, can you post sample data as text and expected output?
    Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

    Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

    The most important parts are:
    1. Sample data as text, use the table tool in the editing bar
    2. Expected output from sample data
    3. Explanation in words of how to get from 1. to 2.

    • Sk1_2's avatar
      Sk1_2
      Frequent Visitor

      Greg_Deckler Thank you. I figured so. Please see sample data below and expected output. I would like to filter the month of January to only show data for 2025. Currently the month of January is displaying 2024

       October 2024November 2024December 2024 January 2025
      Blue55510
      Green66615
      Yellow3337

       

      Row: Project

      Column: Month

      Values: staff count

       

      Thank You in advance,

      • Greg_Deckler's avatar
        Greg_Deckler
        Icon for Community Champion rankCommunity Champion

        Sk1_2 So what is the source data for this as I assume this is the output you want?

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.