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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Get the value of last month of year for previous year

Hi Community,

 

I have a bar graph,in that i want to show data from last month of the previous year if we select previous year from slicer and current month data if we select current year.Please help me to get the right DAX query to b used.

 

Thanks in Advance.

1 ACCEPTED SOLUTION
edhans
Super User
Super User

@Anonymous see if this works:

 

Desired Value = 
VAR varSelectedYear = SELECTEDVALUE('Date'[Year])
VAR varTotal = 
    IF(
        varSelectedYear < YEAR(TODAY()),
        CALCULATE(
            SUM('Table'[Value]),
            FILTER(
                ALL('Date'),
                'Date'[Year] = varSelectedYear
                    && 'Date'[Month] = 12
            )
        ),
        CALCULATE(
            SUM('Table'[Value]),
            FILTER(
                ALL('Date'),
                'Date'[Year] = varSelectedYear
                    && 'Date'[Month] = MONTH(TODAY())
            )
        )
    )
VAR Result = 
    IF(
        ISBLANK(varSelectedYear),
        SUM('Table'[Value]),
        varTotal
    )
RETURN
    Result

 

If no year is selected, it returns all results. If 2019 (last year, or any previous year) is selected, then it returns the amount for December of that year. If the current year is selected, it returns the current month's value. Note: this requires a date table, which is included in the PBIX file I've linked to.

My PBIX file is here.

 

If that is not what you need, please provide sample data and expected results more clearly. Thanks!
How to get good help fast. Help us help you.
How to Get Your Question Answered Quickly
How to provide sample data in the Power BI Forum



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

2 REPLIES 2
edhans
Super User
Super User

@Anonymous - was this helpful?



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
edhans
Super User
Super User

@Anonymous see if this works:

 

Desired Value = 
VAR varSelectedYear = SELECTEDVALUE('Date'[Year])
VAR varTotal = 
    IF(
        varSelectedYear < YEAR(TODAY()),
        CALCULATE(
            SUM('Table'[Value]),
            FILTER(
                ALL('Date'),
                'Date'[Year] = varSelectedYear
                    && 'Date'[Month] = 12
            )
        ),
        CALCULATE(
            SUM('Table'[Value]),
            FILTER(
                ALL('Date'),
                'Date'[Year] = varSelectedYear
                    && 'Date'[Month] = MONTH(TODAY())
            )
        )
    )
VAR Result = 
    IF(
        ISBLANK(varSelectedYear),
        SUM('Table'[Value]),
        varTotal
    )
RETURN
    Result

 

If no year is selected, it returns all results. If 2019 (last year, or any previous year) is selected, then it returns the amount for December of that year. If the current year is selected, it returns the current month's value. Note: this requires a date table, which is included in the PBIX file I've linked to.

My PBIX file is here.

 

If that is not what you need, please provide sample data and expected results more clearly. Thanks!
How to get good help fast. Help us help you.
How to Get Your Question Answered Quickly
How to provide sample data in the Power BI Forum



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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