This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Solved! Go to Solution.
Hi @Anonymous
I would recommend handling this further upstream (data source or Power Query).
However, here is a DAX expression you could use for a calculated column:
Latitud Decimal =
VAR DMS = [Latitud Fin] // Ideally prefix with table name e.g YourTable[Latitud Fin]
VAR DMS_Delimited =
SUBSTITUTE ( SUBSTITUTE ( SUBSTITUTE ( DMS, "°", "|" ), "'", "|" ), """", "" )
VAR Grados =
VALUE ( PATHITEM ( DMS_Delimited, 1 ) )
VAR Minutos =
VALUE ( PATHITEM ( DMS_Delimited, 2 ) )
VAR Segundos =
VALUE ( PATHITEM ( DMS_Delimited, 3 ) )
VAR Result = Grados + Minutos / 60 + Segundos / 3600
RETURN
Result
This changes the delimiters to vertical bars, which allow for convenient splitting of the string with the PATHITEM function.
Regards
Hi @Anonymous
I would recommend handling this further upstream (data source or Power Query).
However, here is a DAX expression you could use for a calculated column:
Latitud Decimal =
VAR DMS = [Latitud Fin] // Ideally prefix with table name e.g YourTable[Latitud Fin]
VAR DMS_Delimited =
SUBSTITUTE ( SUBSTITUTE ( SUBSTITUTE ( DMS, "°", "|" ), "'", "|" ), """", "" )
VAR Grados =
VALUE ( PATHITEM ( DMS_Delimited, 1 ) )
VAR Minutos =
VALUE ( PATHITEM ( DMS_Delimited, 2 ) )
VAR Segundos =
VALUE ( PATHITEM ( DMS_Delimited, 3 ) )
VAR Result = Grados + Minutos / 60 + Segundos / 3600
RETURN
Result
This changes the delimiters to vertical bars, which allow for convenient splitting of the string with the PATHITEM function.
Regards
infinitely grateful 🤜🤛
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 38 | |
| 32 | |
| 28 | |
| 24 |