Jennifer Chue
03/16/2026, 3:22 AMkapa.ai
03/16/2026, 3:22 AMSum of Orders > 100). [Filter by Metric Values]
2. Attribute Filters on Dashboards: If your integer field is modeled as an attribute (rather than a fact/measure), you can add it as an attribute filter on the dashboard, and it will filter the data shown in all linked visualizations. [Attribute Filters on Dashboards]
3. Measure Value Filter Component (SDK/Embedded): If you're building an embedded analytics solution using the GoodData UI SDK, you can use the MeasureValueFilter React component to let users interactively set filter conditions, which are then applied to visualizations. [Measure Value Filter]
<MeasureValueFilter
onApply={this.onApply}
filter={filters[0]}
buttonTitle={measureTitle}
/>
<BarChart
measures={[Md.$TotalSales]}
viewBy={[Md.LocationResort]}
filters={filters}
/>
What is not currently supported:
The use case where a user selects a value from a dropdown and that value is injected into a metric formula to dynamically recalculate results is not natively supported. As confirmed in the GoodData community, making metric names or metric computation dynamically driven by a filter selection is not currently possible due to compatibility complexities. [Community Slack]
Recommendation:
⢠If your integer field acts as a dimension/attribute (e.g., a category or segment ID), model it as an attribute and use it as a dashboard attribute filter.
⢠If you need to filter results based on a metric threshold, use the metric value filter feature.
⢠If you need truly dynamic metric parameterization, this would likely require a custom embedded solution using the GoodData UI SDK.
I'd recommend reaching out to your GoodData account team to discuss your specific use case in more detail, as there may be workarounds depending on your data model. š 0 button š 0 button ā¹ļø Tip: Mention @kapa.ai in the thread for follow-ups.
š Our Support team monitors all messages and will jump in if needed.