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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
santiagouc
Frequent Visitor

Sum of a variable with multiple selected values and filters

Hello!

 

I need to create a measure that sum a column of a table filter by the date and the name of  the selected value but in this case is posible to have multiple values selected. So far I have this measure

 

Potencial Actual =
var _pozo = SELECTEDVALUE(RecoleccionIny[NombreRecobro])

RETURN
CALCULATE(SUM(MedidoresLiquido[Potencial]);FILTER(MedidoresLiquido;AND(MedidoresLiquido[Fecha].[Date]=TODAY()-1;MedidoresLiquido[CodPozo]= _pozo)))
 
when I select only one value of RecoleccionIny[NombreRecobro] works fine but when I select more than one the measure doesn't calculate the sum of MedidoresLiquido[Potencial] I tried to use the formula "IN" but doesn't work. I will appreciate the help!
3 REPLIES 3
Anonymous
Not applicable

Hi, @santiagouc 

 

You may be able to try the following DAX expressions:

 

Potencial Actual =
CALCULATE(
    SUM(MedidoresLiquido[Potencial]),
    FILTER(
        ALLSELECTED(RecoleccionIny),
        MedidoresLiquido[CodPozo] IN VALUES(RecoleccionIny[NombreRecobro])
    ),
    MedidoresLiquido[Fecha].[Date] = TODAY() - 1
)


This measure is used to consider all the choices made in and then filter based on those choices. 

 

How to Get Your Question Answered Quickly 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data)

Best Regards

Yongkang Hua

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Ashish_Mathur
Super User
Super User

Hi,

The second condition within the AND() function seems redundant and therefore so does the AND() function itself.  Create a Calendar Table with a relationship (Many to One and Single) from the Fecha column to the Date column of the Calendar Table.  Simplify your measure to:

 

Measure = CALCULATE(SUM(MedidoresLiquido[Potencial]);datesbetween(Calendar[date];today()-1;today()-1))

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Power_Track100
New Member

Hi @santiagouc would you be so kind to share sample table ? 

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.