March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I need some help writing a measure to calculate the number of events by day and plotting it by date. This is a sample of my table:
date | unique_id | event |
6/24/2022 | 1005022_1191625136_119162520_18934250 | 1 |
6/26/2022 | 1005022_1191625136_119162520_18934250 | 2 |
6/27/2022 | 1005022_1191625136_119162520_18934250 | 2 |
7/9/2022 | 1005022_1191625136_119162520_18934250 | 3 |
7/10/2022 | 1005022_1191625136_119162520_18934250 | 3 |
7/11/2022 | 1005022_1191625136_119162520_18934250 | 4 |
7/12/2022 | 1005022_1191625136_119162520_18934250 | 4 |
7/13/2022 | 1005022_1191625136_119162520_18934250 | 5 |
7/14/2022 | 1005022_1191625136_119162520_18934250 | 5 |
The measure I've written is:
Total L2 Charging Events Detected (2) =
COUNTROWS(
DISTINCT(
SELECTCOLUMNS(
SUMMARIZE(
FILTER(l2_ami,l2_ami[event] <> 0),
l2_ami[unique_id],
l2_ami[event],
l2_ami[date],
"id_event_ky", CONCATENATE(CONCATENATE(l2_ami[unique_id], "_"), l2_ami[event])
),
"_ky", [id_event_ky]
)
)
)
The measure works in total, but when I try in plot it against date, i'm running into the problem that some events span two days. We only want to count the event on the first day. So in June, there should be two events, one on 6/24 and 6/26. But when I plot against Date, it has events on 6/24, 6/26, and 6/27.
Any help would be appreciated.
Solved! Go to Solution.
maybe you can try to create a new column and put that column in the visual
Proud to be a Super User!
maybe you can try to create a new column and put that column in the visual
Proud to be a Super User!
Thanks. Yes, this does work provided I change the connection to my date table from [date] to [date2].
you are welcome
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |