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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
SwaroopRoyM
Helper II
Helper II

Data Formatting and Parameterized report

Hi,

 

I have a filter (both page level/report level) in my report (pbix). my requirement is to display data in visuals based on the selection made. The issue here is i've to get the data from separate tables based on the selection made.

 

For example: in my Filter i've 2 values t1, t2. If i select t1, then the data should be from table1, if t2 then the data should be from table2.

 

Is this possible in Power BI? If yes, how to achieve this?

 

Thanks,

Swaroop

1 REPLY 1
Michiel
Resolver III
Resolver III

If you have filter values t1 and t2, you'll have a table in your model that contains these values. When you add a column to this table with a number value (I always use powers of 2 for this, so in this case 1 and 2), it is possible to detect the value selected by evaluating the sum of the number value, e.g. SUM(Selection[Code]).

Taking data from one or the other table is a matter of creating multiple measures, e.g.

Result1 = SUM(Table1[Value])

Result2 = SUM(Table2[Value])

 

The measure to be used in the report can select on of these using SWITCH:

Result = SWITCH(SUM(Selection[Code]), 1, [Result1], 2, [Result2])

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors