Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
Solved! Go to Solution.
@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
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting@Anonymous - was this helpful?
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting@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
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingThis is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |