Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext 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
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:
Instead, I get something like this:
Any ideas on how I can filter the projected sales to only appear on the current Month x-axis?
@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()
)
Proud to be a Super User! |
|
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 25 |