This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi everyone!
I have two tables, one with the creation date of client accounts:
Client ID, Creation date
The second table includes created assignements:
Client ID, Assignment ID, Assignment creation date
What I want to do is to calculate the percentage of clients who created their account in previous month who placed an assignment in current month. I also want to calculate the average time from account registration to first creation of assignment.
Anyone got any suggestions on how to solve this?
Thank you very much in advance!
Solved! Go to Solution.
Hi @ny326n,
First, please create a relationship between the table.
Second, in second table, you create a calculated column using RELATED function as the following formula.
create-date=RELATED(Table1[Creation date])
Third, create another calculated column using the formula, which shows if the account was created in previous month.
flag=IF(MONTH(Assignment creation date)-MONTH(create-date)>=1,"Yes","No")
Create a measure to calculate the percentage of clients who created their account in previous month who placed an assignment in current month.
Percentage=CALCULATE(DISTINCTCOUNT(Table2[ClientID]),FILTER(Table2,Table[flag]="Yes"))/CALCULATE(DISTINCTCOUNT(Table2[ClientID]),ALL(Table2))
>>I also want to calculate the average time from account registration to first creation of assignment.
Create a calculated to get the difference using the formula.
difference=Table2[create-date]-Table2[Assignment creation date]
Create a measure using the formula.
Average=AVERAGE(Table2[difference])
Best Regards,
Aneglia
Hi @ny326n,
First, please create a relationship between the table.
Second, in second table, you create a calculated column using RELATED function as the following formula.
create-date=RELATED(Table1[Creation date])
Third, create another calculated column using the formula, which shows if the account was created in previous month.
flag=IF(MONTH(Assignment creation date)-MONTH(create-date)>=1,"Yes","No")
Create a measure to calculate the percentage of clients who created their account in previous month who placed an assignment in current month.
Percentage=CALCULATE(DISTINCTCOUNT(Table2[ClientID]),FILTER(Table2,Table[flag]="Yes"))/CALCULATE(DISTINCTCOUNT(Table2[ClientID]),ALL(Table2))
>>I also want to calculate the average time from account registration to first creation of assignment.
Create a calculated to get the difference using the formula.
difference=Table2[create-date]-Table2[Assignment creation date]
Create a measure using the formula.
Average=AVERAGE(Table2[difference])
Best Regards,
Aneglia
Thank you for your help! It worked perfectly!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |