Hello,
I have a bit of a complicated question about calculating distances across rows. I wanted to see if you can help out. First, I will explain the data and goal then go over an example of what I'm trying to do.
Sample data
Journey | Event | Vehicle | Event | Time | Latitude | Longitude |
123 | 1 | 555 | Disconnected | 07/11/2020 19:00:12 | 51 | 5.6 |
123 | 2 | 444 | Disconnected | 07/11/2020 19:00:12 | 51 | 5.5 |
123 | 3 | 333 | Disconnected | 07/11/2020 19:01:12 | 51 | 5.3 |
123 | 4 | 555 | Restored | 07/11/2020 19:21:05 | 51 | 5.5 |
999 | 5 | 888 | Disconnected | 09/11/2020 11:07:03 | 51 | 5.7 |
999 | 6 | 777 | Disconnected | 09/11/2020 11:07:50 | 51 | 5.4 |
999 | 7 | 888 | Restored | 09/11/2020 11:14:36 | 51 | 5.5 |
999 | 8 | 777 | Restored | 09/11/2020 11:17:26 | 51 | 5.6 |
We have multiple journeys which contain multiple events that occur on different vehicles. Each event has a time it was created as well as coordinates of where it was created.
Goal
What I need to do: whenever there is a "Disconnected" event, I need to know what the distance of that vehicle is with the other vehicles and show the maximum of those distances.
Important
Example with sample data
Does anyone have any ideas?
Solved! Go to Solution.
Hi @sem1 ,
According to your description, create the data and set the formula rule to [latitude] + [longitude].
1. Create Measure.
Measure =
var _table=GENERATE(SELECTCOLUMNS(FILTER(ALL('Table'),[Journey]=MAX([Journey])),"jo1",[Journey],"Type",[Vehicle],"juli",[Longitude]+[Latitude]),SELECTCOLUMNS(FILTER(ALL('Table'),[Journey]=MAX([Journey])),"jo2",'Table'[Journey],"Type2",[Vehicle],"juli2",[Longitude]+[Latitude]))
var _value=
MAXX(_table,ABS([juli]-[juli2]))
return
IF(MAX('Table'[Event.1])="Disconnected",_value,BLANK())
2. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @sem1 ,
According to your description, create the data and set the formula rule to [latitude] + [longitude].
1. Create Measure.
Measure =
var _table=GENERATE(SELECTCOLUMNS(FILTER(ALL('Table'),[Journey]=MAX([Journey])),"jo1",[Journey],"Type",[Vehicle],"juli",[Longitude]+[Latitude]),SELECTCOLUMNS(FILTER(ALL('Table'),[Journey]=MAX([Journey])),"jo2",'Table'[Journey],"Type2",[Vehicle],"juli2",[Longitude]+[Latitude]))
var _value=
MAXX(_table,ABS([juli]-[juli2]))
return
IF(MAX('Table'[Event.1])="Disconnected",_value,BLANK())
2. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
139 | |
84 | |
62 | |
60 | |
57 |
User | Count |
---|---|
211 | |
108 | |
89 | |
76 | |
72 |