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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Syndicate_Admin
Administrator
Administrator

Filter array by grouped fields.

Good morning.

I created this visualization in which its rows are Country of origin and country of destination.

diegomerino_1-1695377243585.png

As you can see if I expand for example Spain as a country of origin, the subtotals appear for each country of destination.

diegomerino_2-1695377286221.png

Now, create a filter with which to filter the countries of origin by their total, for this I created the following table:

diegomerino_3-1695377395922.png

Well, using "Volume" as a filter for that purpose works in my purpose, but the problem arises when I filter the page by dates, not having a relationship with them my filter produced by the new table does not have the expected functionality.

Could someone give me a solution? I hope I have explained myself clearly.

Thanks in advance.

4 REPLIES 4
Syndicate_Admin
Administrator
Administrator

I don't know how that works with my problem

Syndicate_Admin
Administrator
Administrator

@diegomerino Hello,
Can you try Related Dax to create a new column.

RELATED function (DAX) - DAX | Microsoft Learn


Thanks
Harish M

Syndicate_Admin
Administrator
Administrator

But having created the following table:

filtered tabla In =
CALCULATETABLE(
SUMMARIZE (
'Tabla In',
'Tabla In'[PAIS_ORIGEN],
"Volume", count('Tabla In'[Loading operation date])),
'Tabla In'[Type _base_transporte_2] = "Dedicated", 'Tabla In'[pvp_eur_km] < 10, 'Tabla In'[Customer amount] <> 0, 'Tabla In'[Supplier amount] <> 0, 'Tabla In'[Trip Type] = "International", 'Tabla In'[KM_CARGADOS] > 5)
I want to relate the new column "volume" to another table, but this function does not allow me to do it
HarishKM
Super User
Super User

Hello,
You can try USERELATIONSHIP dax. This will help you to create a virtual relationship between two table.

Kindly refer this USERELATIONSHIP function (DAX) - DAX | Microsoft Learn

 

 

Thanks
Harish M

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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