Forum Discussion
Daniel_Gatti
4 years agoRegular Visitor
Sum values between multiple periods
Hello, I have the following model in my Power BI report: My first measure is a simple sum: 01 Total Sale = SUM(fSales[Sale]) What I'm trying to achieve is a measure that calculates the s...
- 4 years ago
Hi Daniel_Gatti
Here is the sample file with the solution https://we.tl/t-wcDtQlG6IL99 Total Sale Active Architect = CALCULATE ( Medidas[01 Total Venda], FILTER ( fSales, fSales[Cod Architect] IN DISTINCT ( SELECTCOLUMNS ( FILTER ( Carteira, Carteira[Start date] <= fSales[Data] && Carteira[End date] >= fSales[Data] ), "@CodArchitect", Carteira[Cod Architect] ) ) ) )
tamerj1
Community Champion
4 years agoHi Daniel_Gatti
Here is the sample file with the solution https://we.tl/t-wcDtQlG6IL
99 Total Sale Active Architect =
CALCULATE (
Medidas[01 Total Venda],
FILTER (
fSales,
fSales[Cod Architect] IN
DISTINCT (
SELECTCOLUMNS (
FILTER (
Carteira,
Carteira[Start date] <= fSales[Data]
&& Carteira[End date] >= fSales[Data]
),
"@CodArchitect", Carteira[Cod Architect]
)
)
)
)Daniel_Gatti
4 years agoRegular Visitor
thank you so much!😀