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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AlexisGonzalez
Frequent Visitor

Calculate difference between slicer selected values based on 15 min intervals

in this case, I have selected 3 days ( march 5 - 2 and 1) on the slicer, and I would like to have a measure in a new column with the subtraction of travel time column between the max and min 15 minutes interval by days  ( in this case day 5 minus day 1, per 15 min interval)

for 12:30:00 am 1.41 - 1.46 

for 12:15:00 am 1.39 - 1.63

for 12:00:00 am 1.44 - 1.46 

 

 

power 1.JPGpower 2.JPG

 

thanks..

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @AlexisGonzalez ,

 

Please check the attached PBIX file.

 

1. Enter Data.

Measure Table:

measure table.PNG

 

2. Create "Legend Table".

Legend Table = UNION(VALUES(Data[Day]),'Measure Table')

 

3. Create measures.

Average of Travel Time between Selected Days = AVERAGE(Data[Travel Time (min)])
Difference of Travel Time between Selected Days = 
VAR MaxDay =
    MAXX ( Data, Data[Day] )
VAR MinDay =
    MINX ( Data, Data[Day] )
VAR MaxDayValue =
    CALCULATE (
        MAX ( Data[Travel Time (min)] ),
        FILTER ( Data, Data[Day] = MaxDay )
    )
VAR MinDayValue =
    CALCULATE (
        MAX ( Data[Travel Time (min)] ),
        FILTER ( Data, Data[Day] = MinDay )
    )
RETURN
    MaxDayValue - MinDayValue
Measure = 
IF (
    MAX ( 'Legend Table'[Day] ) = "Average of Travel Time between Selected Days",
    [Average of Travel Time between Selected Days],
    IF (
        MAX ( 'Legend Table'[Day] ) = "Difference of Travel Time between Selected Days",
        [Difference of Travel Time between Selected Days],
        IF (
            VALUE ( MAX ( 'Legend Table'[Day] ) ) IN VALUES ( Data[Day] ),
            CALCULATE (
                AVERAGE ( Data[Travel Time (min)] ),
                FILTER ( Data, Data[Day] = VALUE ( MAX ( 'Legend Table'[Day] ) ) )
            )
        )
    )
)

 

4. Create visuals.

check2.PNG

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

12 REPLIES 12
Icey
Community Support
Community Support

Hi @AlexisGonzalez ,

 

Please check the attached PBIX file.

 

1. Enter Data.

Measure Table:

measure table.PNG

 

2. Create "Legend Table".

Legend Table = UNION(VALUES(Data[Day]),'Measure Table')

 

3. Create measures.

Average of Travel Time between Selected Days = AVERAGE(Data[Travel Time (min)])
Difference of Travel Time between Selected Days = 
VAR MaxDay =
    MAXX ( Data, Data[Day] )
VAR MinDay =
    MINX ( Data, Data[Day] )
VAR MaxDayValue =
    CALCULATE (
        MAX ( Data[Travel Time (min)] ),
        FILTER ( Data, Data[Day] = MaxDay )
    )
VAR MinDayValue =
    CALCULATE (
        MAX ( Data[Travel Time (min)] ),
        FILTER ( Data, Data[Day] = MinDay )
    )
RETURN
    MaxDayValue - MinDayValue
Measure = 
IF (
    MAX ( 'Legend Table'[Day] ) = "Average of Travel Time between Selected Days",
    [Average of Travel Time between Selected Days],
    IF (
        MAX ( 'Legend Table'[Day] ) = "Difference of Travel Time between Selected Days",
        [Difference of Travel Time between Selected Days],
        IF (
            VALUE ( MAX ( 'Legend Table'[Day] ) ) IN VALUES ( Data[Day] ),
            CALCULATE (
                AVERAGE ( Data[Travel Time (min)] ),
                FILTER ( Data, Data[Day] = VALUE ( MAX ( 'Legend Table'[Day] ) ) )
            )
        )
    )
)

 

4. Create visuals.

check2.PNG

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks. this works perfectly...!!!!

 

 

Icey
Community Support
Community Support

Hi @AlexisGonzalez ,

 

Please check if this meets your initial requirements:

int.gif

 

1. Create a measure 'Selection'.

Selection = 
VAR Top1N =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[Date] ), [Date], ASC ),
        ALLSELECTED ( 'Table' )
    )
VAR Top2N =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[Date] ), 'Table'[Date], DESC ),
        ALLSELECTED ( 'Table' )
    )
VAR FirstSelectedValue =
    CALCULATE (
        SUM ( 'Table'[Travel Time (min)] ),
        FILTER ( ALLEXCEPT ( 'Table', 'Table'[15 min INT] ), 'Table'[Date] = Top1N )
    )
VAR SecondSelectedValue =
    CALCULATE (
        SUM ( 'Table'[Travel Time (min)] ),
        FILTER ( ALLEXCEPT ( 'Table', 'Table'[15 min INT] ), 'Table'[Date] = Top2N )
    )
RETURN
    SecondSelectedValue - FirstSelectedValue

 

2. Create a measure 'Is Selected'. Then put it on "Filters on this visual" of which visual needed.

Is Selected = IF ( MAX ( 'Table'[Date] ) IN VALUES ( 'Table'[Date] ), 1 )

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

@Icey, the measure 

 

 

Is Selected = IF ( MAX ( 'Table'[Date] ) IN VALUES ( 'Table'[Date] ), 1 )

 

 

always returns 1. You can remove it from the filter, and the result will be the same. It's redundant because you're filtering always ONE TABLE via slicers.

 

Truth is, the MAX of any finite set belongs to the set (VALUES).

 

There is only one condition when it'll return BLANK: when the set of VALUES is empty. Still, you can remove it and the result will be the same.

 

Best

D

Icey
Community Support
Community Support

Hi @Anonymous ,

 

If I put 'Table'[Date] column in the table visual, [Is Selected] measure is needed. Because I used "ALLEXCEPT" in [Selection] measure.

is selected.gif

 

Best Regards,

Icey

Anonymous
Not applicable

It's very weird that when you select 3 days from the slicer, you are returning in your table rows that should be filtered out by the slicer already. Something's wrong with your [Selection] measure that it brings all the other rows.

This is why I think the [Is ...] measure is redundant.

Best
D
Icey
Community Support
Community Support

Hi @Anonymous ,

 

If it is convenient, could you please check [Selection] measure for me? Maybe it can be improved. Thank you.

 

 

Best Regards,

Icey

hello, thanks for the answers have been very helpful, I think that I now understand a little more about how DAX works.

I was checking the file and everything works as I want, but even when the days are selected using the slicer the difference between the days is not every 15 min for the whole day, the table would give me the difference every 15 min of the selected days (96 intervals per day from 12:00 am to 11:45 pm) please check the PBix file that I will upload ("Demo. pbix" link below) on the page: "my Goal" appears a table that i created for the example where average travel time appears on day 3 and day 1 and the average travel time between them (the days that are selected in the slicer) every 15 min interval by day.

the goal is to create a line graph like the one you can see below in the page where you can plot the travel time of the days selected with the slicer, and also the average travel time (or the difference in average travel time) between the first and last days selected, but to do this the data must be by every day delected and  15 minutes interval (Axis)

https://mega.nz/folder/mDB1DKCJ#BBNX6Fx2x-GZHRz4GleZKw 

thanks ...

 

Icey
Community Support
Community Support

Hi @AlexisGonzalez ,

 

You can refer to this post: DAX – Calculating the difference between 2 selections on a Slicer.

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

Sorry, I'm not sure I'm 100% clear on this. Sample data as text would help. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Seems similar to MTBF, see my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395...


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

MonthDay15 min INTTravel Time (min)
March112:00:00 AM1.46
March212:00:00 AM1.44
March512:00:00 AM1.44
March112:15:00 AM1.63
March212:15:00 AM1.56
March512:15:00 AM1.39
March112:30:00 AM1.46
March212:30:00 AM1.50
March512:30:00 AM1.41

Hello, guys, I would like to clarify a little more about what I want, since I was reviewing and I realized that a little more detail is needed. 

you can find in the following link the Pbix file with has the graph and tables, I think it is the best way to understand what I trying to say.

PBIX file and Data 

On the first page "what I have" you are going to see "table 1" top left corner that has a column " concatenate'   that is a date-time column year/month/day/per 15 min interval and the average travel time column with the same intervals, the slicer that I use to add the days to the table and the graph (the axis of the graph are the 15 min intervals). I only added the first day and the third one for the example. all these visuals are based in the "Data" table.

I would like to find a way to have something similar to what appears on the next page "My Goal"

I built this page using the table " DAta modified " as best I could in excel I did it manually, just show them, so don't pay attention to the way the data is displayed. ( that data that I need to be modified is in table "Data" ) .

the goal is to create a line chart like the one that appears on this page in which I added a line that is the travel time average between the days that I added using the slicer.

You will be able to see in the graph a line of travel time that belongs to day 3, another that belongs to the day one and another line (calculated manually) that is the average of travel time between day 3 and day 1, that is, between the Max and the Min (days) that are added using the Slicer.

I need to find a way to transform de data ( Data table) to be able to do that. no only the average, maybe a percentage or a difference in average travel time between days. 

in case of further clarification just let me know, and although if you cannot help me I would like to thank you in advance for your time and effort
thanks.

 

 

 

 

 

 

 

 

 

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.