Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Niiru1
Helper V
Helper V

Create DAX Table with Decimal point Integers

I'm trying to create a table via DAX that will use latitudes and longitudes as integers however when I enter that values only whole numbers are available but I need decimal values x5 or x6.

 

Niiru1_0-1629972871830.png

 

 

 

I know I can "Enter Data" or "connect to Excel csv" file but the particular problem I'm working on requires a DAX table to be created in this fashion.

 

I have also followed other advice tips to change numbers into decimal numbers, not summarized and data category classifications as "latitude" and "longitude" respectively

 

My formula is: 

Test Coordinates = 
DATATABLE(
"Latitude",INTEGER,
"Longitude",INTEGER,
"Nod",INTEGER,
"Ion",INTEGER,
"Address",STRING,
{
{48.858242,2.2949378,31,1,"Address 1"},
{38.89773,-77.03653,32,2,"Address 2"},
{51.499447,-0.124759,33,3,"Address 3"},
{52.51622,13.37765,34,5,"Address 4"}
}
)

https://www.dropbox.com/s/7mo46b7z590zuuh/LatLongFix.pbix?dl=0

 

 

 

1 ACCEPTED SOLUTION
v-xiaoyan-msft
Community Support
Community Support

Hi @Niiru1 ,

 

Please try the dax below:

 

Test Coordinates = 
DATATABLE(
    "Latitude",DOUBLE,
    "Longitude",DOUBLE,
    "Nod",INTEGER,
    "Ion",INTEGER,
    "Address",STRING,


    {
        {48.858242,2.2949378,31,1,"Address 1"},
        {38.89773,-77.03653,32,2,"Address 2"},
        {51.499447,-0.124759,33,3,"Address 3"},
        {52.51622,13.37765,34,5,"Address 4"}
    }
)

 

here is my test result:

vcaitlynmstf_1-1630319808040.png

 

 

 

Hope it helps,


Community Support Team _ Caitlyn Yan

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-xiaoyan-msft
Community Support
Community Support

Hi @Niiru1 ,

 

Please try the dax below:

 

Test Coordinates = 
DATATABLE(
    "Latitude",DOUBLE,
    "Longitude",DOUBLE,
    "Nod",INTEGER,
    "Ion",INTEGER,
    "Address",STRING,


    {
        {48.858242,2.2949378,31,1,"Address 1"},
        {38.89773,-77.03653,32,2,"Address 2"},
        {51.499447,-0.124759,33,3,"Address 3"},
        {52.51622,13.37765,34,5,"Address 4"}
    }
)

 

here is my test result:

vcaitlynmstf_1-1630319808040.png

 

 

 

Hope it helps,


Community Support Team _ Caitlyn Yan

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Niiru1 , Create with ROW and union after that mark this column category as long/lat

 

example

union(

ROW("Month", 1),
ROW("Month", 2),
ROW("Month", 3)
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.