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.
When I only have UserId(integer) and Timestamp (DateTime), I would like to list up data as below;
Source
UserId...Timestamp
1.............12/1/2016 5:33 AM
23...........12/1/2016 7:33 AM
76...........12/8/2016 5:13 AM
23...........12/4/2016 5:13 AM
Expected Result
DaysOfUse....NumberOfUser
2 days.............2 users
3 days.............1 users
8 days...........11 users
I read several posts [1],[2] but I do not have start/end duration.
After creating Date column as below, but what can I do next?
Date = Source[Timestamp].[Date]
Solved! Go to Solution.
The easiest thing to probably do is to import your source again, but only your UserId field and remove duplicates. Relate this to your fact table. In this new UserId table, create a new column like so:
DaysUsed = CONCATENATE(CALCULATE(COUNTROWS(Source))," days")
Source is your source table name.
Then just put DaysUsed into a table visulization along with a count of UserId and you should have what you want.
I am having trouble understanding how your Expected Result relates to your Source data. In your Source data, you have UserId's of 1, 23, 76 and then 23 again. But in your Expected Results, you have "DateOfUsage" and you seem to be using the UserId's there, was that intentional and if so, I'm confused. Please elaborate/clarify. Thanks.
Sorry. I editted upon your request.
What I try to do is to get such clause; "11 users use our service 8 (separate) dates"
The easiest thing to probably do is to import your source again, but only your UserId field and remove duplicates. Relate this to your fact table. In this new UserId table, create a new column like so:
DaysUsed = CONCATENATE(CALCULATE(COUNTROWS(Source))," days")
Source is your source table name.
Then just put DaysUsed into a table visulization along with a count of UserId and you should have what you want.
Thanks. wow you are really genius ![]()
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 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 38 | |
| 25 | |
| 23 | |
| 22 |