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

sum the value in summarized colu

I would like to sum the value or all rows summarized column first and want this type of output as mentioned in below picture.

 

Sumarized total.PNG

 

As mentioned in image:
I want to show the
Toal of (Avg Stay Time) Column in Card . and after that I would like tot device that total with Count of Unique booth name. In this case uquine count of booth name is 4. But i want it to change when data is changed.

Output should be 79 (13+5+18+43)/4= 19.75 or 20

 

Thanks in advance.

1 ACCEPTED SOLUTION

Hi @Anonymous

Does this meet your requirement?

If it helps you, could you accept the answer?

 

Best Regards

Maggie

View solution in original post

6 REPLIES 6
Farhan75
Frequent Visitor

Hi

 

Of course, you understand that the Total Avg Stay Time you're currently getting is a Weighted Average of your underlying data. If you want a straight average of your aggregated results, then you could achieve that using a SUMMARIZE function as below:

 

Say you're current Measure is something like:

Avg Stay Time = SUM(Table1[Duration Seconds])/COUNT(Table1[Badge ID])/60

 

Then to get the Total you're after

Measure = SUMX(SUMMARIZE(Table1,Table1[Booth Name],"Avg Stay Time",[Avg Stay Time]),[Avg Stay Time])/DISTINCTCOUNT(Table1[Booth Name])

 

This gives 19.73.

 

Hope that helps.

Anonymous
Not applicable

It's shwoing 19.5 instead of 19.73. Am i Doing Right?

I have used following Mesure function

AvgStayTime_SUMX = SUMX(SUMMARIZE(Table1,Table1[Booth Name],"Avg Stay Time",[AvgStayTime_DIVIDE]),[Avg Stay Time])/DISTINCTCOUNT(Table1[Booth Name])

And my Avg Stay Tim mesure having this formula:

AvgStayTime_DIVIDE = INT( 
DIVIDE(
	SUM('Table1'[Duration Seconds]),
	DISTINCTCOUNT('Table1'[BadgeID])
)/60)

Actual table is this:

BadgeIDJob TitleFirstNameLastNameBoothNumberBooth NameDuration Seconds
123EngineerabcWoods27Booth 1600
456EngineerdefWoods27Booth 1480
789EngineerghiSa27Booth 11320
532Chief Information OfficerjklVa14Booth 2240
1182304Operations ManagerChetManchester21Booth 3980
1182523Account ManagerTravisFulton21Booth 31080
1182657Senior EngineerLuisaSangines21Booth 31680
1182879EngineerMarkSkallet21Booth 3480
1149995AnalystMeganHemmila37Booth 41200
1149995AnalystMeganHemmila37Booth 42280
1150180Architect|PartnerHoaTram37Booth 41200
1150180Architect|PartnerHoaTram37Booth 4480
117Senior EngineerpqrPa14Booth 2360

 

 

Hi

 

It's because you're using the INT function in your AvgStayTime_DIVIDE which is rounding your results down. So, for example, against Booth 1 you're getting 13 instead of 13.33.  This is then affecting you're overall average.

 

If you want to round down (for some reason) then what you're doing is correct. If you just want to display you're results as rounded down, then I would remove the INT function.  You can change how your measure is displayed in the Modelling tab, or in the 

 

** apologies for delay in responding. I tried to reply after your initial reply, but it disappeared (perhaps when you were editing it) 

Hi @Anonymous

As tesetd, the output is 19.5

4.png

If this doesn't meet your requirement, please contact with me.

 

Best Regards

Maggie

Anonymous
Not applicable

Hi @v-juanli-msft, Thank you for your reply on this. Culd you please share the PBIX file with me?

 

Hi @Anonymous

Does this meet your requirement?

If it helps you, could you accept the answer?

 

Best Regards

Maggie

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.