Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ashamsuzzoha
Helper III
Helper III

Counting an event occurring on concurrent days once

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

6/26/2022

1005022_1191625136_119162520_18934250

6/27/2022

1005022_1191625136_119162520_18934250

7/9/2022

1005022_1191625136_119162520_18934250

7/10/2022

1005022_1191625136_119162520_18934250

7/11/2022

1005022_1191625136_119162520_18934250

4

7/12/2022

1005022_1191625136_119162520_18934250

7/13/2022

1005022_1191625136_119162520_18934250

7/14/2022

1005022_1191625136_119162520_18934250

 

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.

ashamsuzzoha_0-1702617070202.png

Any help would be appreciated.



1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@ashamsuzzoha 

maybe you can try to create a new column and put that column in the visual

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@ashamsuzzoha 

maybe you can try to create a new column and put that column in the visual

11.PNG





Did I answer your question? Mark my post as a solution!

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





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.