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
bbsin
New Member

Can advise how to show the total budget vs spending by month and quarter and yearly?

hi

 

the budget cost I have is in this table format,

May I know how to show in the dashboard 

by it's sub cat and detail breakdown to

1) Qtr total Budget vs total spending

2) Monthly - 

3) yearly as it will few yeards

 

bbsin_0-1659074452705.png

 

not sure how to link into the date as the budget dates are in SUM?  Thanks

 

bbsin_1-1659074573248.png

 

 

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @bbsin ,

 

Please try following the steps.

1# Unpivot the yearmonth columns.

2# Create Year, Quarter and Month Columns.

3# Create measures like below:

Qtr =
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year], [Quarter] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    )
)

Monthly =
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year], [Month] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    )
)

Yearly = 
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory] )
    )
)

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @bbsin ,

 

Please try following the steps.

1# Unpivot the yearmonth columns.

2# Create Year, Quarter and Month Columns.

3# Create measures like below:

Qtr =
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year], [Quarter] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    )
)

Monthly =
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year], [Month] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    )
)

Yearly = 
DIVIDE (
    CALCULATE (
        SUM ( [value] ),
        ALLEXCEPT ( 'table', [category], [subcategory], [Year] )
    ),
    CALCULATE (
        MAX ( [total] ),
        ALLEXCEPT ( 'table', [category], [subcategory] )
    )
)

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@bbsin , You have to unpivot the months. remove the total months.

https://radacad.com/pivot-and-unpivot-with-power-bi

 

Create date using month

Date = datevalue("01 "& [Month] )

 

Join sales and budget table with common date table and analyze

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.