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
sarfkermali
Frequent Visitor

How do you add a new row to a table?

How would you go about adding a row to the table below with the following data using only DAX?

 

location: New York

Type: Big

date: april, 2017

# people: 1000

 

 

Table 1

 

LocationTypedate# people
calgaryBigmarch, 20171143
torontoSmallmarch, 2017242
californiaSmallmarch, 2017609
mogadishuBigmarch, 20170
1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

basically it's not possible to add rows to a table using DAX, for this reason I would recommend to add the new data to the data source of your "Table 1".

 

You can use DAX to create a new table, a calculated table, like so (Modeling Menu --> Calculations ribbon --> "New Table"):

new table = 
UNION(
    'Table 1'
    , ROW(
        "location", "New York"
        ,"Type", "Big"
        ,"date", "april, 2017"
        ,"# people", 1000
    )
)

Wondering you get the data to your "Table 1"?

 

If you entered the data using "Enter Data", you can add data to the data by opening the Query Editor, by using the "Edit Queries" from the "External Data" ribbon on your home menu. Then just click the gear icon right to the source step.

 

Hopefully this is what you are looking for.

 

Regards

Tom

 

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

2 REPLIES 2
TomMartens
Super User
Super User

Hey,

 

basically it's not possible to add rows to a table using DAX, for this reason I would recommend to add the new data to the data source of your "Table 1".

 

You can use DAX to create a new table, a calculated table, like so (Modeling Menu --> Calculations ribbon --> "New Table"):

new table = 
UNION(
    'Table 1'
    , ROW(
        "location", "New York"
        ,"Type", "Big"
        ,"date", "april, 2017"
        ,"# people", 1000
    )
)

Wondering you get the data to your "Table 1"?

 

If you entered the data using "Enter Data", you can add data to the data by opening the Query Editor, by using the "Edit Queries" from the "External Data" ribbon on your home menu. Then just click the gear icon right to the source step.

 

Hopefully this is what you are looking for.

 

Regards

Tom

 

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thank you Tom!

 

"gear icon right to the source step" - I would never have worked that out as the way to add another row to a table of data I manually entered!!!

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.