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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
powerBI_User123
New Member

Show whole year while slicing on one month - DAX

Hello,

 

I am trying to get whole year for a diagram when using the filter "month year".

For example when using the filter 202201 I want the whole 2022 to result in values for my diagram. How can I do that?

I have one date table "Calendar" and I have one Sale table "DimSale".

 

Greatful for all help!

 

 

3 REPLIES 3
Nabha-Ahmed
Super User
Super User

Hi @powerBI_User123

 

Use a measure that ignores the month filter but keeps the year

 

 
Sales_WholeYear =
VAR SelectedYear =
SELECTEDVALUE( Calendar[Year] )
RETURN
CALCULATE(
SUM(DimSale[Amount]), -- Replace with your measure
Calendar[Year] = SelectedYear
)

Thanks🌹

kudo

 

marcoperson_250
Regular Visitor

Hello there,

If you are using a monthly year filler, ensure your calendar table has a combination of the month and year. Power BI creates the relation between the calendar table and sale table data, and then you can use the month-year filter on your diagram.

I hope this is helpfulfor you.

lbendlin
Super User
Super User

you would create a measure that calculates the value accordingly (for example via REMOVEFILTERS(month)

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.