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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
schaetzles
Frequent Visitor

PowerBI Create a table out of the selection of multiple field parameters

Hey guys, 

I need help for the following topic:

I have two Field Parameters with the following dimensions:

FieldParameter1                                                                        FieldParameter2:
Country                                                                                     Customer
Street                                                                                         Seller
Language                                                                                  Company


What i want to create is a table that contains all of the selected dimensions of the two parameters.

If i choose Country, Street and Seller my table should look like this:

Table
Country
Street
Seller




So far i tried everything from UNION and Crossjoin to measures and others.

Would be glad if someone could help me

 

Best regards

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @schaetzles ,

I create a table as you mentioned.

vyilongmsft_0-1723441135197.png

Then I create two FieldParameters.

FieldParameter1 = {
    ("Country", NAMEOF('Table'[Country]), 0),
    ("Street", NAMEOF('Table'[Street]), 1),
    ("Language", NAMEOF('Table'[Language]), 2)
}

vyilongmsft_1-1723441223128.png

FieldParameter2 = {
    ("Customer", NAMEOF('Table'[Customer]), 0),
    ("Seller", NAMEOF('Table'[Seller]), 1),
    ("Company", NAMEOF('Table'[Company]), 2)
}

vyilongmsft_2-1723441417642.png

I think you can use the two FieldParameters tables for table reorganization.

vyilongmsft_3-1723441544303.png

Then you can get what you want.

vyilongmsft_4-1723441617154.png

 

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @schaetzles ,

I create a table as you mentioned.

vyilongmsft_0-1723441135197.png

Then I create two FieldParameters.

FieldParameter1 = {
    ("Country", NAMEOF('Table'[Country]), 0),
    ("Street", NAMEOF('Table'[Street]), 1),
    ("Language", NAMEOF('Table'[Language]), 2)
}

vyilongmsft_1-1723441223128.png

FieldParameter2 = {
    ("Customer", NAMEOF('Table'[Customer]), 0),
    ("Seller", NAMEOF('Table'[Seller]), 1),
    ("Company", NAMEOF('Table'[Company]), 2)
}

vyilongmsft_2-1723441417642.png

I think you can use the two FieldParameters tables for table reorganization.

vyilongmsft_3-1723441544303.png

Then you can get what you want.

vyilongmsft_4-1723441617154.png

 

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

audreygerred
Super User
Super User

Make one field parameter with all of your dimensions in it. Then, the user will be able to select whatever dimesnions you have showing in the slicer for it. They can multi-select the items to show whichever combination they want. I would have a second field parameter (or calculation group) for measures. 





Did I answer your question? Mark my post as a solution!

Proud to be a 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 Solution Authors