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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
gogrizz
Advocate I
Advocate I

Comparing the number of parent/child occurrences in Line Chart

I have a dozen+ networks (franchises) and 2-300 companies, all of which are distributed amongs the networks.

Each company is assigned to a network, making it a parent/child type relationship.

I also have 200k events in a fact table.  The fact table has columns that indicate the network and company linked to the event.

 

My report has a slicer to choose the network, a slicer to choose the company, and a line chart.

 

I want to display the number of events on a line chart with the event date on the x-axis.  I'm trying to get one line to represent the number of events related to the company, and a second line that shows the moving average of all events that are linked to the network.  

 

The end goal is to show a company's event history (line #1), compared to the average of all companies within that network (line #2).  I've tried a bunch of ways and have searched the forum, but can't find and answer that'll work.

 

Thanks!

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@gogrizz I think this is what you need:

 

Event Count = COUNTROWS ( Table ) --this is what you will use for Line 1

Avg Event Count for selected network = 
CALCULATE 
    AVERAGEX ( VALUES ( Table[EventDate] ), [Event Count] ),
    REMOVEFILTERS ( NetworkCompanyTable[Company] )
)

 

if this doesn't work, I would recommend pasting sample data in a table format to further look into it.

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

1 REPLY 1
parry2k
Super User
Super User

@gogrizz I think this is what you need:

 

Event Count = COUNTROWS ( Table ) --this is what you will use for Line 1

Avg Event Count for selected network = 
CALCULATE 
    AVERAGEX ( VALUES ( Table[EventDate] ), [Event Count] ),
    REMOVEFILTERS ( NetworkCompanyTable[Company] )
)

 

if this doesn't work, I would recommend pasting sample data in a table format to further look into it.

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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