Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I have 2 tables : 1)'Exposure - All' and 2)'tbExtractFMTenant'.
1)'Exposure - All' has columns : 'exposure_analysis_group' and 'tenant_name'. Every 'exposure_analysis_group' has a specific tenant_name.
2)'tbExtractFMTenant' columns : tenant_name and 'trend_query_margin'. every ''tenant_name'' has their specific 'trend_query_margin'. I have a slicer from the 'exposure_analysis_group' column. I want to get the 'trend_query_margin' based on the 'exposure_analysis_group' selection.
Example:
'Exposure - All' table : 'exposure_analysis_group' 'tenant_name'
1 x
2 y
3 z
tbExtractFMTenant' table : trend_query_margin 'tenant_name'
5.50 x
6.50 y
7.50 z
Trying to get the trend_query_margin based on the 'exposure_analysis_group' slicer selection.
There are no active relationships between these 2 tables and we don't want active relationship.
Wrote a dax but doesn't give me the trend_query_margin based on the 'exposure_analysis_group' slicer :
@umutkaya79 , Try like
Margin =
VAR SelectedGroup = values('Exposure - All'[exposure_analysis_group])
RETURN
CALCULATE(
MAX('tbExtractFMTenant'[trend_query_margin]),
FILTER('tbExtractFMTenant', 'tbExtractFMTenant'[tenant_name] in SelectedGroup)
)
of exploring treatas
https://docs.microsoft.com/en-us/dax/treatas-function
https://www.sqlbi.com/articles/propagate-filters-using-treatas-in-dax/
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 37 | |
| 28 | |
| 27 |