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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
ATMAN777
New Member

Using a baseline perspective

Hi PowerBI gurus,

 

Given a dataset example below, I'd like to display total sale quantity by date in a line graph. This I can easily do. I'd like to be able to use a baseline line (the start from which the graph displays totals). This would:

  1. Filter sales before the baseline date
  2. Only track fruit times present in the baseline date (i.e. excluding sales for new fruit types that occur in future months).

I accomplished this with a hard-coded baseline date by adding a Boolean column "IsInBaseline" where I flag the specified items I want to track from the start month onward meeting the two criteria above.

 

What I would really like to have is a selectable baseline start date. This can't be a slicer as it would filter data on the page - and it would not include dates beyond the selected date and I still want to meet criteria #2 as well.

 

Example outputs are in the lower tables

 

Any ideas?

 

Screenshot 2024-09-15 181456.png

Output examples:

With a baseline date of 2024/01/01, the totals are by month but EXCLUDE pineapples as these were only introduced in April.

ATMAN777_0-1726464346286.png

 

With a baseline of 2024/03/01, totals include 03/01 plus future months but still EXCLUDES pineapples.

ATMAN777_1-1726464452790.png

 

Finally, with a baseline of 2024/04/01, values include all fruits including pineapples and tracks them into future months too.

ATMAN777_2-1726464544375.png

 

 

 

1 ACCEPTED SOLUTION
Selva-Salimi
Solution Sage
Solution Sage

Hi @ATMAN777 

Thanks for updating the post. here is the solution:

you can write a measure as follows:

sales_by_baseline =
var baseline = min(DimDate[date])
var fruits = summarize(filter(all(Table_sales) , Table_sales[Date] = baseline) , Table_sales[Fruit])
RETURN
calculate(sum(Table_sales[Sale Quantity]) , filter (Table_sales,  Table_sales[Fruit] in fruits && Table_sales[Date] >= baseline ))
 
kepp in mind that X-axis of line chart should be selected from sales_table and the slicer should be selected from DimDate . and also there should NOT be any relation between your sales_table and dimdate
 
If this post helps, then I would appreciate a thumbs up  and mark it as the solution to help the other members find it more quickly. 

View solution in original post

4 REPLIES 4
Selva-Salimi
Solution Sage
Solution Sage

Hi @ATMAN777 

Thanks for updating the post. here is the solution:

you can write a measure as follows:

sales_by_baseline =
var baseline = min(DimDate[date])
var fruits = summarize(filter(all(Table_sales) , Table_sales[Date] = baseline) , Table_sales[Fruit])
RETURN
calculate(sum(Table_sales[Sale Quantity]) , filter (Table_sales,  Table_sales[Fruit] in fruits && Table_sales[Date] >= baseline ))
 
kepp in mind that X-axis of line chart should be selected from sales_table and the slicer should be selected from DimDate . and also there should NOT be any relation between your sales_table and dimdate
 
If this post helps, then I would appreciate a thumbs up  and mark it as the solution to help the other members find it more quickly. 

Hi @Selva-Salimi,

 

This is brilliant.  I have so much to learn.   Thank you so much for the solution.

Selva-Salimi
Solution Sage
Solution Sage

Hi @ATMAN777 

would you share example of what you expect?

Hi @Selva-Salimi

 

I have updated the post to include sample output.  

 

Thanks

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors