Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello everyone,
I'm developing a participation analysis, and I would like to obtain 2 different measures:
How can I get the second measure?
The analysis is for four years, and I need to know each selected period the new participating companies.
Thanks.
Regards,
Solved! Go to Solution.
@jacob2102 , refer I have used customer ID and Isblank and monthly measures, Same can help you to build
Customer Retention Part 1:
https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-1-Month-on-Month-Retention/b...
Hi @jacob2102 ,
Is your problem solved, you can also try the following:
I created some data:
Here are the steps you can follow:
1. Create calculated table.
2. Create measure.
Flag =
var _min=MIN('Date'[Date])
var _max=MAX('Date'[Date])
return
IF(
MAX('Table'[date])>=_min&&MAX('Table'[date])<=_max,1,0)
Number of participants =
CALCULATE(DISTINCTCOUNT('Table'[companies]),ALLSELECTED('Table'))
Number of non-participants =
var _all=CALCULATE( DISTINCTCOUNT('Table'[companies]),ALL('Table'))
return
_all -[Number of participants]
3. Place [Flag]in Filters, set is=1, apply filter.
4. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @jacob2102 ,
Is your problem solved, you can also try the following:
I created some data:
Here are the steps you can follow:
1. Create calculated table.
2. Create measure.
Flag =
var _min=MIN('Date'[Date])
var _max=MAX('Date'[Date])
return
IF(
MAX('Table'[date])>=_min&&MAX('Table'[date])<=_max,1,0)
Number of participants =
CALCULATE(DISTINCTCOUNT('Table'[companies]),ALLSELECTED('Table'))
Number of non-participants =
var _all=CALCULATE( DISTINCTCOUNT('Table'[companies]),ALL('Table'))
return
_all -[Number of participants]
3. Place [Flag]in Filters, set is=1, apply filter.
4. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@jacob2102 , refer I have used customer ID and Isblank and monthly measures, Same can help you to build
Customer Retention Part 1:
https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-1-Month-on-Month-Retention/b...
Thanks for your answer.
I am going to create an aditional column to identify the first participation date and then create a relationship to exclud the dates.
Thanks.
Regards,
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
12 | |
12 | |
8 | |
7 |
User | Count |
---|---|
16 | |
13 | |
11 | |
11 | |
9 |