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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Table selection

Hi

I've FACT Table like columns Period, Desc, Mention, List, amount

 

Filters : Period, Mention

 

Hence I have build summarized table with standard fields.

Desc, Amount

 

if I choose 'mention' in the filter then result: 

Desc,Mention,Amount... incase uncheck filters then go out from table like versa... 

 

please guide dax code on this

1 ACCEPTED SOLUTION
v-prasare
Community Support
Community Support

Hi @Anonymous,

thanks for explaining the scenario. To better understand the issue and provide an accurate solution, could you please share a small set of sample data (with any sensitive information removed) along with the expected output? This will help ensure the guidance is aligned with your exact requirement.

 

 

Thanks,

Prashanth

MS fabric community support

View solution in original post

6 REPLIES 6
v-prasare
Community Support
Community Support

Hi @RajK2,

thanks for explaining the scenario. To better understand the issue and provide an accurate solution, could you please share a small set of sample data (with any sensitive information removed) along with the expected output? This will help ensure the guidance is aligned with your exact requirement.

 

 

Thanks,

Prashanth

MS fabric community support

v-prasare
Community Support
Community Support

Hi @Anonymous,

thanks for explaining the scenario. To better understand the issue and provide an accurate solution, could you please share a small set of sample data (with any sensitive information removed) along with the expected output? This will help ensure the guidance is aligned with your exact requirement.

 

 

Thanks,

Prashanth

MS fabric community support

danextian
Super User
Super User

If by summarized table you are referring to a calculated summary table, it does not respond to slicer selections. Calculated tables are only updated during refresh, or when the referenced tables, columns, measures, or the formula itself are modified. There is no DAX that allows calculated tables to be dynamically filtered by slicer selections.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Let me explain

 

Parameter = {
("Goodwill", NAMEOF('Sales_Data'[Desc]), 0),
("Revenue", NAMEOF('_Sales_Data'[Amount2]), 1),
("Debt", NAMEOF('_Sales_Data'[Amount3]), 3),
("Rent", NAMEOF('_Sales_Data'[Amount4]), 2)}

 

This is parameter I used in the table and the same I filtered selection

Quarter, Country, Parameter
(bold highlighed above standard columns and parameter only dynamic)

if I filter 'Goodwill' then Goodwill will in the table OR 'Rent' select then 'Rent' will show in the table along with Quarter, Country.

 

My question if unselect ALL filters (parameter) then
Result

Quarter, Country, Goodwill,Revenue,Debt,Rent

Should be Result
Quarter, Country

how to avoid this. / disable unselected fields in the parameter like any code..

alish_b
Super User
Super User

Hi @Anonymous ,

I am not sure if I understand the problem at hand. Could you please provide sample data (without any sensitive information) and expected output? This would help us in understanding your problem and suggesting a solution.

Hope it helps!

Anonymous
Not applicable

Parameter = {
("Goodwill", NAMEOF('Sales_Data'[Desc]), 0),
("Revenue", NAMEOF('_Sales_Data'[Amount2]), 1),
("Debt", NAMEOF('_Sales_Data'[Amount3]), 3),
("Rent", NAMEOF('_Sales_Data'[Amount4]), 2)}

 

This is parameter I used in the table and the same I filtered selection

Quarter, Country, Parameter
(bold highlighed above standard columns and parameter only dynamic)

if I filter 'Goodwill' then Goodwill will in the table OR 'Rent' select then 'Rent' will show in the table along with Quarter, Country.

 

My question if unselect ALL filters (parameter) then
Result

Quarter, Country, Goodwill,Revenue,Debt,Rent

Should be Result
Quarter, Country

how to avoid this. / disable unselected fields in the parameter like any code..

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors