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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
antoinetohme
New Member

Matrix by quarters

 

 

 

 

Hey guys,

 

I have the following data table:

StreamStart DateSalary
DevJan 1, 2022100,000
SalesMar 3, 2022120,000
SalesJuly 1, 2022100,000
PMOct 10, 2022140,000

 

I am trying to display a matrix like this, where I can estimate the cost of each resource by quarter based on their salary (i.e Salary/12 x 3 for each quarter depending on the month in the quarter they sarted):

StreamQuarter 1Quarter 2Quarter3Quarter 4
Dev    
Sales    
PM    

 

The Start Date represent the starting date of the resource with their annual salary.

I need a function to determine the quarterly salary of that resource broken down into 4 quarter, starting from quarter his start date falls into.

Then using that function in a Matrix visual display the above table.

 

For example, if a resource started in June 2022 with a salary of 100K The table would display

Stream Q1  Q2    Q3    Q4

Dev      0$   25K  25K  25K

 

if he started in july then Q2 would reflect that month.

 

Your help is appreicated.

 

Thank you

1 ACCEPTED SOLUTION

Hi @antoinetohme ,

 

How about this:

Calendar = 
ADDCOLUMNS (
    CALENDARAUTO (),
    "Year", YEAR ( [Date] ),
    "QuarterNum", QUARTER ( [Date] ),
    "Quarter", "Quarter " & QUARTER ( [Date] )
)

 

Measure = 
VAR t =
    SUMMARIZE (
        FILTER (
            CROSSJOIN ( 'Calendar', 'Table' ),
            'Calendar'[Date] >= 'Table'[Start Date]
        ),
        [Stream],
        [Year],
        [Quarter],
        [Salary]
    )
RETURN
    SUMX ( t, [Salary] / 4 )

 

Icey_0-1653287850486.png

 

 

Best Regards,

Icey

 

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

3 REPLIES 3
Greg_Deckler
Super User
Super User

@antoinetohme You can use Quarter in a calculated column: Quarter - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

THanks Greg. Sorry I should have been more clearer.

The Start Date represent the starting date of the resource with their annual salary.

I need a function to determine the quarterly salary of that resource broken down into 4 quarter, starting from quarter his start date falls into.

Then using that function in a Matrix visual display the above table.

 

For example, if a resource started in June 2022 with a salary of 100K The table would display

Stream Q1  Q2    Q3    Q4

Dev      0$   25K  25K  25K

 

if he started in july then Q2 would reflect that month.

thanks again

Hi @antoinetohme ,

 

How about this:

Calendar = 
ADDCOLUMNS (
    CALENDARAUTO (),
    "Year", YEAR ( [Date] ),
    "QuarterNum", QUARTER ( [Date] ),
    "Quarter", "Quarter " & QUARTER ( [Date] )
)

 

Measure = 
VAR t =
    SUMMARIZE (
        FILTER (
            CROSSJOIN ( 'Calendar', 'Table' ),
            'Calendar'[Date] >= 'Table'[Start Date]
        ),
        [Stream],
        [Year],
        [Quarter],
        [Salary]
    )
RETURN
    SUMX ( t, [Salary] / 4 )

 

Icey_0-1653287850486.png

 

 

Best Regards,

Icey

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors