Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi PowerBI Community,
I have a set of user data one of which recorded when they signed up to a learning platform
One of my dashboards revolves around logins to this platforms
What i would like to do is when filtering by a date(month) it will show how many users were signed up in all previous months inclusive of the one selected
Is there a measure I can use to create this or are there better ways to show this?
Thank you,
Daniel
Solved! Go to Solution.
I have fixed my problem!
I created a Cumaltive Measure on the sign up table so when filtering by year on the logins it will show how many people were signed up to that ate
Hi @LDC20 ,
According to your description, I created some data to show:
Here are the steps you can follow:
1. Create calculcated column.
if =
IF('Table'[program]="registered",1,0)2. Create measure.
registered_user =
var _selectedvalue=SELECTEDVALUE('Table'[date])
var _sum=
CALCULATE(SUM('Table'[if]),FILTER(ALL('Table'),'Table'[date]<=_selectedvalue))
return _sum
3. Result.
You can downloaded PBIX file from here.
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.
@LDC20 , if you have signup date, you can join that with a date table. In the date table, you can have month, qtr and year. And yiu can analyze by that.
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I have fixed my problem!
I created a Cumaltive Measure on the sign up table so when filtering by year on the logins it will show how many people were signed up to that ate
I have my calendar table and the chart is correct however it doesnt give the information I would like to present
For example, if I look at the month of June 2020, I want to know how many people have logged in (just for the month of June) while knowing how many people were signed up until end of June 2020.
If I deselect certain months the number obviosuly will remove those from the filter, which I dont want to do
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 35 | |
| 34 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 99 | |
| 73 | |
| 66 | |
| 65 |