Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Instead of adding columns one at a time using dax is it possible to add multiple columns in one go? I can break the code up below to add one column at a time and it works, but when I try to combine it into one dax statement it doesn't.
Solved! Go to Solution.
Hi @barrymac98
If you want to add multiple columns at one time, you need to use calculated table, because it will return multiple columns, you cannot create them directly at the existed table. you can refer to the following sample.
Create a calculated table
Table2 =
ADDCOLUMNS (
'Table',
"Alice",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", "Alice",
'Table'[Name] = "Bob", UNICHAR ( 8203 ),
'Table'[Name] = "Carol", REPT ( UNICHAR ( 8203 ), 2 ),
BLANK ()
),
"Bob",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", UNICHAR ( 8203 ),
'Table'[Name] = "Bob", "Bob",
'Table'[Name] = "Carol", REPT ( UNICHAR ( 8203 ), 2 ),
BLANK ()
),
"Carol",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", REPT ( UNICHAR ( 8203 ), 2 ),
'Table'[Name] = "Bob", UNICHAR ( 8203 ),
'Table'[Name] = "Carol", "Carol",
BLANK ()
)
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @barrymac98
If you want to add multiple columns at one time, you need to use calculated table, because it will return multiple columns, you cannot create them directly at the existed table. you can refer to the following sample.
Create a calculated table
Table2 =
ADDCOLUMNS (
'Table',
"Alice",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", "Alice",
'Table'[Name] = "Bob", UNICHAR ( 8203 ),
'Table'[Name] = "Carol", REPT ( UNICHAR ( 8203 ), 2 ),
BLANK ()
),
"Bob",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", UNICHAR ( 8203 ),
'Table'[Name] = "Bob", "Bob",
'Table'[Name] = "Carol", REPT ( UNICHAR ( 8203 ), 2 ),
BLANK ()
),
"Carol",
SWITCH (
TRUE (),
'Table'[Name] = "Alice", REPT ( UNICHAR ( 8203 ), 2 ),
'Table'[Name] = "Bob", UNICHAR ( 8203 ),
'Table'[Name] = "Carol", "Carol",
BLANK ()
)
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Makes sense! thank you 🙂
Not sure what you mean,
but u can use addcolumns function in dax to add as many as you want
But can I create multiple columns with just one AddColumns call?
I seem to only be able to create one column per addcolumn call
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
65 | |
63 | |
52 | |
37 | |
36 |
User | Count |
---|---|
82 | |
66 | |
61 | |
46 | |
45 |