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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
RedDwarf_803
Frequent Visitor

Display (in a matrix) next available departure time of multiple bus services

Hi

If I have posted my question in the wrong forum just let me know and I correct my mistake.

Basic plot:
I want to display (in a matrix) next available departure time of multiple bus services that I based the arrival time of selected bus service on a selected bus stop.

My idea was to create two matrix visuals
Visual A:
Create a measure that displays the next departure time of each bus service
Visual B
Create a measure that calculate the time differences between (bus service) departure time from the selected bus service arrival time.


I’ve tried several DAX measures and now om stuck.
My try-outs have been as calculated measures.

By a slicer the user selects:
Operating date (one date)
StopAreaNumber (one single bus stop)
TechnicalLineNumber of the bus service that arrives to the bus stop.

Each bus service can have 1 or 2 directions (DirectionCode) of departure from the selected bus stop.

The expected result should look like this.

testDataForum - Excel.jpg



This I my latest result in the visual.
Red boxes/arrows display wrong departure time.
Green boxes shows correct data
PBIPic.jpg

My dax measure

NextDeparture = 
VAR currentDate = SELECTEDVALUE(TraficOnStopArea[OperatingDayDate])
VAR busStop = SELECTEDVALUE(TraficOnStopArea[StopAreaNumber])
VAR data = CALCULATETABLE(TraficOnStopArea, FILTER(TraficOnStopArea,TraficOnStopArea[OperatingDayDate].[Date] = currentDate &&  TraficOnStopArea[StopAreaNumber]= busStop))
VAR nextDepartureTime = MAXX(data,TraficOnStopArea[PlannedDepartureTime])


return
nextDepartureTime



The linked pbix file is just a small version of a larger dataset.
DataOnStop 

1 REPLY 1
RedDwarf_803
Frequent Visitor

Hi

I just realised that some data from arrival time/date some how got mixed up with departure time/date.
Apologize for the mistake
Here is a new file
DataOnStop 

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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

Top Solution Authors