The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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:
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |