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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Abdel_BCN
Frequent Visitor

Set a Maximum and Minimum date filter on a Line Chart

Dear community, 

 

I'm struggling on setting up a filter to show only date between a calculated Minimum date and a Maximum date.

This dynamic filter must be applied on the line chart, means for each Job_No in the table has a different MIN Date and MAX Date.

 

Example for this particular job: this chart instead of being shown like this:

 

Photo 1.JPG

 

it should be shown like this:

 

Photo 2.JPG

 

The data comes from this table:

 

Abdel_BCN_0-1665674520678.png

Many thanks!

1 ACCEPTED SOLUTION

Found a solution, 

I've created new column in the table Progress(Sheet2) called P_Date.

 

P_Date =
var DateMAx= MAXX(filter('ConsumptionTable','ConsumptionTable'[Job_NO]=earlier('Sheet1 (2)'[Job_No])),'ConsumptionTable'[MAX_Date])
var DateMin= MAXX(filter('ConsumptionTable','ConsumptionTable'[Job_NO]=earlier('Sheet1 (2)'[Job_No])),'ConsumptionTable'[MIN_Date])
var P_Date=
IF('Sheet1 (2)'[Posting_Date]<=DateMAx&&'Sheet1 (2)'[Posting_Date]>DateMin,'Sheet1 (2)'[Posting_Date],Blank())
Return P_Date
 
With P_Date I limit the amount of values that neeed to be shown in the linechart taking into account the Max_Date and Min Date from the other table ConsumptionTable.
 
I hope this example can help others to filter the line chart based on Max date and Min Date.
 
thanks,
Best regards.
 

View solution in original post

4 REPLIES 4
Abdel_BCN
Frequent Visitor

hi @amitchandak ,

Many thanks for the reply. I think I did not explain enough what I'm looking to achive.

The two lines shown in the line chart are from two different tables.

  1. 1st table among other columns have accumulative hours consmption and dates of the consumptions.
  2. 2nd tables has the progress of the project and its date.

I was able to connect and put the two graph together. but I wanted to limit the time windows by a maximum date and a minimum date taken from the first table (hours consumption)

 

so instead of showing 0 progress 3 or 4 months before the consumptions starts. I want to see the two graph from the moment I have hours consumption.

 

for that reason I've calculated the start date and end date of each project but I don't know how to apply this into the line chart.

 

Example of another project:

Not pleaseant view:

Abdel_BCN_1-1665742247314.png

 

Desired automatic view:

 

Abdel_BCN_0-1665742203124.png

 

Thanks for your help 🙂

 

My best regards, 

Abdel.

Found a solution, 

I've created new column in the table Progress(Sheet2) called P_Date.

 

P_Date =
var DateMAx= MAXX(filter('ConsumptionTable','ConsumptionTable'[Job_NO]=earlier('Sheet1 (2)'[Job_No])),'ConsumptionTable'[MAX_Date])
var DateMin= MAXX(filter('ConsumptionTable','ConsumptionTable'[Job_NO]=earlier('Sheet1 (2)'[Job_No])),'ConsumptionTable'[MIN_Date])
var P_Date=
IF('Sheet1 (2)'[Posting_Date]<=DateMAx&&'Sheet1 (2)'[Posting_Date]>DateMin,'Sheet1 (2)'[Posting_Date],Blank())
Return P_Date
 
With P_Date I limit the amount of values that neeed to be shown in the linechart taking into account the Max_Date and Min Date from the other table ConsumptionTable.
 
I hope this example can help others to filter the line chart based on Max date and Min Date.
 
thanks,
Best regards.
 
v-shex-msft
Community Support
Community Support

HI @Abdel_BCN,

This sound like common multiple date fields analysis requirements, you can take a look at the following blog 'start date', 'end date' parts if it helps:

Before You Post, Read This 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@Abdel_BCN , not very clear. But you need measure like

 

new measure =
var _max = maxx(allselected(Date),Date[Date])
var _min = minx(allselected(Date),Date[Date])
return
calculate( sum(Table[Value]), filter('Date',  'Date'[Date] =_max)) - calculate( sum(Table[Value]), filter('Date',  'Date'[Date] =_min))

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors