Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
CuriousGuy001
Frequent Visitor

Group Multiple Values into One Values on Month

Hi everyone,

 

I am building a reporting using Matrix based on sales rep by points and date. I already finished my DAX calculation for filtering to MTD/QTD/YTD, but now I am trying to figure out how put all the sames months into total for each month. Relationship tables are connected, Formatted to Date - (mmmm yyyy). I did asked another community, and one possible solution is to get it to Calendar format, but I am not quite sure how to do it.Screenshot 2024-05-13 134252.png

 

DAX calculation,

 

MTD/QTD/YTD Selection =
    VAR TodayDate = TODAY()
    VAR YearStart = CALCULATE(STARTOFYEAR('Margin Report'[Install Date]), YEAR('Margin Report'[Install Date]) = YEAR(TodayDate))
    VAR QuarterStart = CALCULATE(STARTOFQUARTER('Margin Report'[Install Date]),YEAR('Margin Report'[Install Date]) = YEAR(TodayDate), QUARTER('Margin Report'[Install Date]) = QUARTER(TodayDate))
    VAR MonthStart = CALCULATE(STARTOFMONTH('Margin Report'[Install Date]), YEAR('Margin Report'[Install Date]) = YEAR(TodayDate), MONTH('Margin Report'[Install Date]) = MONTH(TodayDate))
    Var Result =
    UNION(
        ADDCOLUMNS(
            CALENDAR(YearStart,TodayDate),
            "Selection", "YTD"
        ),    
         ADDCOLUMNS(  
            CALENDAR(QuarterStart,TodayDate),
            "Selection", "QTD"
        ),    
        ADDCOLUMNS(  
            CALENDAR(MonthStart,TodayDate),
            "Selection", "MTD"
        )
    )
RETURN
Result
1 ACCEPTED SOLUTION
v-jialongy-msft
Community Support
Community Support

Hi @CuriousGuy001 

 

Here's a concise action plan to help you achieve this:

  1. Create a Calendar Table: If you haven't already, create a calendar table that covers the entire range of dates present in your sales data. This table should include columns for Year, Quarter, Month, and Date at a minimum. You can use DAX to create this table. For more details on creating a calendar table, please refer to the Creating Calendar Table in Power BI using DAX Functions - RADACAD documentation.

  2. Establish Relationships: Ensure that there's a relationship between your calendar table and your sales data table ('Margin Report' in your case) based on the date columns. 

  3. Modify Your Matrix Visual: In your matrix visual, use the Month column from your calendar table as the row or column headers to group your data by month. This will automatically aggregate your sales data by the months.

  4. Adjust Your DAX Calculation: If necessary, adjust your DAX calculation to reference the appropriate date column in your calendar table instead of directly from the 'Margin Report' table. This ensures that your calculations are leveraging the structured and consistent date information from your calendar table.

 

 

 

 

 

 

Best Regards,

Jayleny

 

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

 

View solution in original post

2 REPLIES 2
v-jialongy-msft
Community Support
Community Support

Hi @CuriousGuy001 

 

Here's a concise action plan to help you achieve this:

  1. Create a Calendar Table: If you haven't already, create a calendar table that covers the entire range of dates present in your sales data. This table should include columns for Year, Quarter, Month, and Date at a minimum. You can use DAX to create this table. For more details on creating a calendar table, please refer to the Creating Calendar Table in Power BI using DAX Functions - RADACAD documentation.

  2. Establish Relationships: Ensure that there's a relationship between your calendar table and your sales data table ('Margin Report' in your case) based on the date columns. 

  3. Modify Your Matrix Visual: In your matrix visual, use the Month column from your calendar table as the row or column headers to group your data by month. This will automatically aggregate your sales data by the months.

  4. Adjust Your DAX Calculation: If necessary, adjust your DAX calculation to reference the appropriate date column in your calendar table instead of directly from the 'Margin Report' table. This ensures that your calculations are leveraging the structured and consistent date information from your calendar table.

 

 

 

 

 

 

Best Regards,

Jayleny

 

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

 

I had to re-do everything. So the one thing I did is to make another column based on Month only from the Install Date Column. And drag the month to the row to be display in the Matrix visualization.Screenshot 2024-05-14 150202.png

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Kudoed Authors