Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
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.
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))
User | Count |
---|---|
82 | |
78 | |
67 | |
46 | |
45 |
User | Count |
---|---|
105 | |
44 | |
39 | |
39 | |
39 |