Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am trying to take the sample dataset:
| ID | Location | Number Bracket |
| 123 | North America | $101-$250 |
| 233 | North America | $251-$500 |
| 433 | EMEA | $101-$250 |
| 697 | APAC | $501-$1000 |
And create a calculated table in DAX that performs the following:
| Index | Bracket | North America | APAC | EMEA |
| 1 | $101-$250 | 1 | 0 | 1 |
| 2 | $251-$500 | 1 | 0 | 0 |
| 3 | $501-$1000 | 0 | 1 | 0 |
Essentially creating a pivot table. Let me know if this is possible. Thank you!
Solved! Go to Solution.
Hi @botaac simpe click add new table and use ADDCOLUMNS (SUMMARIZE pattern with your columns and measures like https://learn.microsoft.com/en-us/dax/addcolumns-function-dax?WT.mc_id=DP-MVP-4025372
I hope this help
Proud to be a Super User!
Hi @botaac simpe click add new table and use ADDCOLUMNS (SUMMARIZE pattern with your columns and measures like https://learn.microsoft.com/en-us/dax/addcolumns-function-dax?WT.mc_id=DP-MVP-4025372
I hope this help
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 7 | |
| 7 | |
| 7 |