
Contributor III
2020-03-06
04:47 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Pivot table - change order of columns
Hi,
I would like to change the order of the columns in a pivot table. Right now the order is like this with the "Region" dimension:
Europe | Emerging Markets | Asia | North America |
How can I change it to this:
North America | Europe | Emerging Markets | Asia |
I tried to create a sort expression with a match function and another one with the dual function. Both didn't work.
Thanks!
Regards
Samuel
- Tags:
- pivot table
4,522 Views
1 Solution
Accepted Solutions

Creator II
2020-03-06
07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This one worked for me:
Match([NAME OF DIMENSION IN ROW PIVOTTABLE], Dual('North America',1), Dual('Europe',2), Dual('Emerging Markets',3), Dual('Asia',4))
2 Replies

Creator II
2020-03-06
07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This one worked for me:
Match([NAME OF DIMENSION IN ROW PIVOTTABLE], Dual('North America',1), Dual('Europe',2), Dual('Emerging Markets',3), Dual('Asia',4))

Contributor III
2020-03-06
08:34 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks it works! 🙂
4,494 Views
