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
Anonymous
Not applicable

Average Distincts per TimeStamp

Hello all.

 

I'm quite new with Power BI and I'm facing a problem while I try to create a measure.

 

I have a table with events, its time stamps and the machine with the problem identified with a serial number.

 

I wish to know the average of distinct SN per day in a time frame. I know that it is easy to do with a chart, but I need the value as a measure for next calculations.

 

I show you an example below:

 

 

Here are my data. And I want to obtain:

 

 

In Excel, the path I follow is the next:

 

SUM(  COUNTIFS ( LISTOFDAYS = DAY && LIST_OF_SN = SN1 ) + COUNTIFS ( LISTOFDAYS = DAY && LIST_OF_SN = SN2 ) + .... + COUNTIFS ( LISTOFDAYS = DAY && LIST_OF_SN = SNn )

This option isn't good neither in Excel nor, of course, in Power BI.

 

What I've tried?

 

Create a new table with one column where are the days.

Distinct counts of SN from original table.

 

And now, with the help of and slicer I want to use both tables in the same page filtering by SN and by date, but I have issues when I link the tables. I've used a link Many to One form original table (same day due to events in different rows) to the new table (one different day per row). Then, when I use the slicer to select the time frame is all ok, but doesn't apply the SN filter also I have.

 

How can I do that?

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @Anonymous,

 

According to your description, I have made a sample for your reference.

 

I assume you have a table called "Table1" like below.

 

t1.PNG

 

Then you should be able to use the formula below to create a measure to calculate the average of distinct SN per day in a time frame.

AvgCountPerDay = 
AVERAGEX (
    SUMMARIZE (
        Table1,
        Table1[Time],
        "DistinctCountOfSN", DISTINCTCOUNT ( Table1[SN] )
    ),
    [DistinctCountOfSN]
)

r1.PNG

 

Here is the sample pbix file for your reference.Smiley Happy

 

Regards

View solution in original post

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @Anonymous,

 

According to your description, I have made a sample for your reference.

 

I assume you have a table called "Table1" like below.

 

t1.PNG

 

Then you should be able to use the formula below to create a measure to calculate the average of distinct SN per day in a time frame.

AvgCountPerDay = 
AVERAGEX (
    SUMMARIZE (
        Table1,
        Table1[Time],
        "DistinctCountOfSN", DISTINCTCOUNT ( Table1[SN] )
    ),
    [DistinctCountOfSN]
)

r1.PNG

 

Here is the sample pbix file for your reference.Smiley Happy

 

Regards

Anonymous
Not applicable

Works fine! Many thanks for your time! 😉

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.