Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I had a measure which shows the number of remaining customers for each month, after counting for the predicted churn.
CALCULATE(
PRODUCTX('Year Month', 1-[Churn% Last Year]),
FILTER(
ALLSELECTED('Year Month'),
'Year Month'[År Måned] <= MAX('Year Month'[År Måned])))
*[Total customers at the start of year]
But now I want to change this measure so that it shows the actual value of customers if the month has passed. So for this year, it should show the actual number count for january, february and march, and then start multiplying march with Churn% Last Year to predict april etc.
For this I have a Churn % This Year measure.
I tried this:
CALCULATE(
PRODUCTX('Year Month', 1- IF('Year Month'[Before this month] = 1,
[Churn% This Year], [Churn% Last Year]),
FILTER(
ALLSELECTED('Year Month'),
'Year Month'[År Måned] <= MAX('Year Month'[År Måned])))
*[Total customers at the start of year]But this one checks the if condition month by month, and for the future months, it ignores the results of Churn% This year.
I can't create a static table because I also have slicers, if activated, that replace Churn% Last year with the slicer value.
Is it possible to create a dynamic conditional expression for the PRODUCTX like this?
Hi @Anonymous
Could you provide sample data and expected output after removing sensitive data?
You can give examples of your expected output in excel format.
Sample data and expected output would help tremendously.
Please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , can you share formula of
[Churn% This Year], [Churn% Last Year]
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I have a `Churn% old users` column in the `Year Month` table. So the measures retrieve the info from that column
```
Churn% This Year =
```
```
Churn% Last Year =
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 34 | |
| 32 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 40 | |
| 26 | |
| 24 |