Hello,
I have 2 variables [Latitude] and [Longitude], and I would like to make a custom column which outputs in the following format: N[Latitude],E[Longitude] with "N" + "," + "E" being text.
Thank you in advance,
Omar
Talk2IoT
Solved! Go to Solution.
Hi OmarTalk2IoT,
The first solution is that you can simply use "&" symbol to concatenate thses columns and symbols in either DAX or Power Query as below:
Result = "N" & [Latitude] & "," & "E" & [Longitude]
Also, the second solution is that you can create a calculate column using DAX below:
Result = CONCATENATE ( "N", CONCATENATE ( [Latitude], CONCATENATE ( ",", CONCATENATE ( "E", [Longitude] ) ) ) )
Regards,
Jimmy Tao
Hi OmarTalk2IoT,
The first solution is that you can simply use "&" symbol to concatenate thses columns and symbols in either DAX or Power Query as below:
Result = "N" & [Latitude] & "," & "E" & [Longitude]
Also, the second solution is that you can create a calculate column using DAX below:
Result = CONCATENATE ( "N", CONCATENATE ( [Latitude], CONCATENATE ( ",", CONCATENATE ( "E", [Longitude] ) ) ) )
Regards,
Jimmy Tao
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
222 | |
56 | |
48 | |
44 | |
43 |
User | Count |
---|---|
291 | |
208 | |
77 | |
74 | |
66 |