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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Dragonfury
Frequent Visitor

Only display value for latest month on visual

I have some sales and dates/Months.

I have a bar chart showing Sales (Y axis) by Month (x axis)

 

I have a measure that works out projected sales for the current month.

Projected Sales Measure = 

 

VAR mxp = MAX(Dates[Month])
RETURN
CALCULATE(DIVIDE([Sales Amount],workingDays*workingDaysToDate, Dates[Month]= mxp)

 

 

The problem is when I add this measure to the column y-axis/Line y-axis, it auto applies the calculation to all months. I only want to see this column for the current month as below:

Dragonfury_1-1721220717787.png

 

Instead, I get something like this:

Dragonfury_2-1721220792893.png

Any ideas on how I can filter the projected sales to only appear on the current Month x-axis?

 

 

1 REPLY 1
bhanu_gautam
Super User
Super User

@Dragonfury , Update your measure to return  value for only one month

 

Projected Sales Measure =
VAR CurrentMonth = MAX(Dates[Month])
RETURN
IF(
MAX(Dates[Month]) = CurrentMonth,
CALCULATE([Sales Amount], Dates[Month] = CurrentMonth),
BLANK()
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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