Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
Hi @tamerj1 , while your answer is heading the right way, it is not the solution. I get the same numbers for all of my customers. But I've been busy myself and found the solution.
While you can only add multiple filters in a calculate, you can only add them on 1 table. It does not work on multiple tables. You then have 2 options.
1. Make an aggregation as @tamerj1 is showing above
2. And this is what I did: just create a new measure based on the previous measure:
Hi @BIDevil
please try
Pricing Avg At Date =
AVERAGEX (
SUMMARIZE (
FILTER (
ALLSELECTED ( Fact_Pricing ),
Fact_Pricing[Date] <= MAX ( Dim_Date[Date] )
&& Fact_Pricing[Price] <> BLANK ()
),
Fact_Pricing[D_RetailStore_SKey],
"@Growth", SUM ( Fact_Pricing[Growth] )
),
[@Growth]
)
Hi @tamerj1 , while your answer is heading the right way, it is not the solution. I get the same numbers for all of my customers. But I've been busy myself and found the solution.
While you can only add multiple filters in a calculate, you can only add them on 1 table. It does not work on multiple tables. You then have 2 options.
1. Make an aggregation as @tamerj1 is showing above
2. And this is what I did: just create a new measure based on the previous measure:
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |