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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
mollig3
Frequent Visitor

Filtering Calculated Columns

I have created a mess of calculated columns that will show three lines when selected as "line values" on the graph. Here is an example of the calculated columns:

 FP Capacity 8 Hours

FP Capacity 10 Hours

 FP Capacity 12 Hours

Meat Capacity 8 Hours

Meat Capacity 10 Hours

Meat Capacity 12 Hours

 

I have a slicer on my dashboard from a different field that contains:

FP

Meat

 

What I'm wanting is that when the user selects "FP" from the slicer, the combo chart will automatically graph the three Capacity calculated columns from above that say FP in the title.

 

Thanks in advance for the help 🙂

 

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @mollig3

Not like measures, calculate columns are computed during database processing and then stored in the model, they do not response to user selections on the report.

So it is not possible to create a calculate column to change dynamically with user selections on the report.

Normally, we can create measures instead, then show the measures on the visual with the corresponding columns from your table.

For example,

FP Capacity 10 Hours =
IF ( SELECTEDVALUE ( Table5[TYPE] ) = "FP", MAX ( [FP Capacity 10 Hours2] ) )
Meat Capacity 10 Hours = IF(SELECTEDVALUE(Table5[TYPE])="Meat",MAX([Meat Capacity 10 Hours2]))

32.png

 

 

Best Regards

Maggie

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @mollig3

Not like measures, calculate columns are computed during database processing and then stored in the model, they do not response to user selections on the report.

So it is not possible to create a calculate column to change dynamically with user selections on the report.

Normally, we can create measures instead, then show the measures on the visual with the corresponding columns from your table.

For example,

FP Capacity 10 Hours =
IF ( SELECTEDVALUE ( Table5[TYPE] ) = "FP", MAX ( [FP Capacity 10 Hours2] ) )
Meat Capacity 10 Hours = IF(SELECTEDVALUE(Table5[TYPE])="Meat",MAX([Meat Capacity 10 Hours2]))

32.png

 

 

Best Regards

Maggie

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.