Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
I have a stacked column chart that shows, "daily sales amount by store over time". I want a target line that jumps up by a constant value every time a new store is opened (red solid line). See chart below, stores are colour coded, the first time that colour appears is the opening date of that store, and I need a measure to accumulate a constant value when that store is opened. I attempted (dotted red line) to come up with something, closest I could was this:
Target_sales_cumulative =
CALCULATE(
DISTINCTCOUNT(Table[Store]),
FILTER(Table, Table[Date] >= [Earliest Date min per Store]
)
)*[Target per Store]
[Earliest Date min per Store] =
Earliest Date min per Store =
MINX(
KEEPFILTERS(VALUES('Table'[Store])),
CALCULATE(MIN('Table'[Date]))
)
[Target per Store] = 240
But it will only jump up if there was sales for that particular date for that store.
Very new to PowerBI so appreciate help for this basic question!
Solved! Go to Solution.
Hi @ausphil
I would recommend you write Target_sales_cumulative like this:
Target_sales_cumulative = VAR MaxDate = MAX ( 'Table'[Date] ) RETURN CALCULATE ( DISTINCTCOUNT ( 'Table'[Store] ), 'Table'[Date] <= MaxDate ) * [Target per Store]
This measure is similar to what you had already tried: it counts the number of stores that appear up to the max date filtered.
You don't need the Earliest Date min per store measure.
As a side point, I would recommend a Calendar table separate from your sales table, but you can get by without it.
Regards,
Owen
Hi @ausphil
I would recommend you write Target_sales_cumulative like this:
Target_sales_cumulative = VAR MaxDate = MAX ( 'Table'[Date] ) RETURN CALCULATE ( DISTINCTCOUNT ( 'Table'[Store] ), 'Table'[Date] <= MaxDate ) * [Target per Store]
This measure is similar to what you had already tried: it counts the number of stores that appear up to the max date filtered.
You don't need the Earliest Date min per store measure.
As a side point, I would recommend a Calendar table separate from your sales table, but you can get by without it.
Regards,
Owen
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
60 | |
58 | |
56 | |
38 | |
28 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |