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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
databot_kd
Helper II
Helper II

DAX measure to insert new values into a list or table

Hi community, 

Is it possible to have a DAX measure that can insert values into a table or list. 

For example i can write a measure to return distinct values from my table so it looks like this:

databot_kd_0-1697533449731.png


I want to create a new DAX formula that will append two additonal values into this list/table so it looks like this now:

databot_kd_1-1697533515065.png


The values Total Budget and Total Amount added to the table 

Thanks in advance 

1 ACCEPTED SOLUTION
2 REPLIES 2
Igna
Resolver III
Resolver III

Hello,

 

You can do that with Power Query. 

 

Open the Power Query editor on the table that you want and edit the code using this :

 

let
    Source = YourTable,
    AppendValues = Table.FromList({"Total Budget", "Total Amount"}, Splitter.SplitByNothing()),
    AppendedTable = Table.Combine({Source, AppendValues})
in
    AppendedTable

 

Igna

Ahmedx
Super User
Super User

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors