Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I have a log table that contains an action, user id and date/time.
I would like to produce a line chart that shows continual user growth over time.
the Title column would need to only show the first login for each user. So that would be the first instance of 'launched app'.
How can I achieve this? Thank you
Solved! Go to Solution.
I think I've figured this out.
I created a column that has a 1 for the first appearance of each user email;
First Login =
VAR _class =
CALCULATE(
MIN('Log'[Date]),
ALLEXCEPT('Log', 'Log'[email])
)
RETURN
IF('Log'[Date] = _class, 1, BLANK())
Next I created a measure to count the logins cumulatively (dark blue line)
running sum = CALCULATE(
SUM('Log'[First Login]),
FILTER(ALLSELECTED('Log'),
'Log'[Date] >= DATE(YEAR(MAX('Log'[Date])),1,1) &&
'Log'[Date] <= MAX('Log'[date])
))
I think I've figured this out.
I created a column that has a 1 for the first appearance of each user email;
First Login =
VAR _class =
CALCULATE(
MIN('Log'[Date]),
ALLEXCEPT('Log', 'Log'[email])
)
RETURN
IF('Log'[Date] = _class, 1, BLANK())
Next I created a measure to count the logins cumulatively (dark blue line)
running sum = CALCULATE(
SUM('Log'[First Login]),
FILTER(ALLSELECTED('Log'),
'Log'[Date] >= DATE(YEAR(MAX('Log'[Date])),1,1) &&
'Log'[Date] <= MAX('Log'[date])
))
How about use a measure below?
UserNum = DISTINCTCOUNT(Log Table[UserID])
X-axis:Date
Y-axis:UserNum
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
95 | |
86 | |
78 | |
66 |
User | Count |
---|---|
153 | |
125 | |
114 | |
111 | |
95 |