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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
matemusic
Advocate III
Advocate III

Columne as multiple values in filter function (or other ways

Hey everyone.

 

Is there a way, to input column in filter function?

 

Here is an example:

 

var x = values(Here comes a calculated column filter by other measurement condition) 

return
calculate(sum(sales[price]);filter(sales;[product]=x)

So in var x i get list of product names which are filtered by other measure. In return i want to get all products, which are in var x. 

 

Thank you

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @matemusic,

 

As we can define variables with both scalar values and tables, you should be able to define an expression like the following one in your scenario.

[RedSales] :=
VAR RedProducts =
FILTER ( ALL ( Product[Color] ), Product[Color] = "Red" )
RETURN
CALCULATE ( SUM ( Sales[Quantity] ), RedProducts )

In addition, here is a good article about Variables in DAX for your reference.Smiley Happy

 

Regards

View solution in original post

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @matemusic,

 

As we can define variables with both scalar values and tables, you should be able to define an expression like the following one in your scenario.

[RedSales] :=
VAR RedProducts =
FILTER ( ALL ( Product[Color] ), Product[Color] = "Red" )
RETURN
CALCULATE ( SUM ( Sales[Quantity] ), RedProducts )

In addition, here is a good article about Variables in DAX for your reference.Smiley Happy

 

Regards

austinsense
Impactful Individual
Impactful Individual

Without ever having done it, I bet you can create a variable that returns a table and then pass that into your measure

 

 

var x = FILTER( VALUES(Products), [Measure])
RETURN
CALCULATE( SUM(Sales[Price]), x)

 

I'm not 100% sure if this is what you're asking for but let me know if it works 🙂

 

Austin is VP Operations at PowerPivotPro and a professional self-service enthusiast 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.