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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
DerekC
Frequent Visitor

Weighted Average

Looking for a way Count the number of times a certain dwell time shows up and divide it by the total count of rows shown if filtered.  Example: 54 shows up 2 times and there is 24 total rows that are on the page if filters are applied so weighted % is 2/24 = .0833333.  Then, I will take the Dwell Time x Weighted % = Dwell x Wgt %.  

 

DerekC_0-1661977240798.png

 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@DerekC try this measure:

 

Count Measure = COUNTROWS ( Table )
Total Count Measure = CALCULATE ( [Count Rows], ALLSELECTED () )

Dwell x Wgt% Measure = 

SUMX ( 
   Table,
   VAR __dwellTime = Table[Dwell Time]
   VAR __dwellCount = CALCULATE ( [Count Measure], ALLSELECTED (), VALUES ( Table[Dwell Time] ) )
   VAR __weightedPercent = DIVIDE ( __dwellCount, [Total Count Measure] )
   RETURN
       __weightPercent * __dwellTime
)

   

 

 

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 effort 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

2 REPLIES 2
parry2k
Super User
Super User

@DerekC try this measure:

 

Count Measure = COUNTROWS ( Table )
Total Count Measure = CALCULATE ( [Count Rows], ALLSELECTED () )

Dwell x Wgt% Measure = 

SUMX ( 
   Table,
   VAR __dwellTime = Table[Dwell Time]
   VAR __dwellCount = CALCULATE ( [Count Measure], ALLSELECTED (), VALUES ( Table[Dwell Time] ) )
   VAR __weightedPercent = DIVIDE ( __dwellCount, [Total Count Measure] )
   RETURN
       __weightPercent * __dwellTime
)

   

 

 

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 effort 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.

Thank you very much.  I had to add another measure to get the result I wanted, but this got me 90% of the way there.  

I broke out the weighted percent variable into its own measure. 

VAR __weightedPercent = DIVIDE ( __dwellCount, [Total Count Measure] )

 

Then, then I had to create a new measure to SUMX the weighted percent and divide by the SUMX of the Dwell x wgt% Measure you helped me create.  

 
Wgt Avg Dwell =
VAR Sumdwellxwgt = SUMX("TABLE", [Dwell x Wgt% Measure])
VAR Sumwgtpercent = SUMX("TABLE", [Wgt%])

RETURN
Sumdwellxwgt / Sumwgtpercent

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.