Forum Discussion
LDC20
5 years agoFrequent Visitor
Displaying Sign-Up Data
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...
- 5 years ago
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
Anonymous
5 years agoNot applicable
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.