March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Table 1 has column of data (4 rows) and I tranpose this data into a sigle row.
I append this query to another table and then want to fill "up or down" this appended data.
The formula looks like this:
= Table.FillUp(#"Appended Query",{"Column1", "Column2", "Column3", "Column4"})
If I add more rows to Table 1 (go from 4 rows to "N" number of rows), how do I get the Fill command to dynamically select the updated number of colmuns?
Is there a way to select the range of colums like the following:
= Table.FillUp(#"Appended Query",{"Column1" : "ColumnN"})
Thanks for the help in advance I really appreciate it!
Solved! Go to Solution.
Hi - Try Below.
Table.FillDown(#"Appended Query",Table.ColumnNames(#"Appended Query"))
Thanks
Ankit Jain
Do Mark it as solution if the response resolved your problem. Do like the response if it seems good and helpful.
Hi - Try Below.
Table.FillDown(#"Appended Query",Table.ColumnNames(#"Appended Query"))
Thanks
Ankit Jain
Do Mark it as solution if the response resolved your problem. Do like the response if it seems good and helpful.
Excellent suggestion! Its exatcly what I needed! Thank you!
@AnkitBI wrote:Hi - Try Below.
Table.FillDown(#"Appended Query",Table.ColumnNames(#"Appended Query"))Thanks
Ankit JainDo Mark it as solution if the response resolved your problem. Do like the response if it seems good and helpful.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
12 | |
9 |
User | Count |
---|---|
35 | |
31 | |
20 | |
19 | |
17 |