Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!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.
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.
This I my latest result in the visual.
Red boxes/arrows display wrong departure time.
Green boxes shows correct data
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
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
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
11 | |
10 | |
8 | |
7 | |
7 |