Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 50 | |
| 44 | |
| 41 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 32 | |
| 32 | |
| 32 |