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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

showing total on a visual

Hi,

 

I need to show total of stacked column chart by adding the values from all columns. Please suggest how to achieve it.

Total.JPG

 

Thanks,

@Greg_Deckler 

@az38 

1 ACCEPTED SOLUTION

Hi,

 

After my test, i think there is no such custom visual can completely reach your requirement.

 

Best Regards,

Giotto

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi,

I haven't received the solution for the problem i have mentioned in the question. Anyone, please suggest how to achieve it ,excluding using card visual and grouping it with visual.

 

Thanks

Hi,

 

After my test, i think there is no such custom visual can completely reach your requirement.

 

Best Regards,

Giotto

v-gizhi-msft
Community Support
Community Support

Hi,

 

If you do not have many X-axis categories, you can try this workaround:

1)Create a new table first:

Table 2 = UNION(DISTINCT(SELECTCOLUMNS('Table',"New X-axis",'Table'[Date])),DATATABLE("New X-axis",STRING,{{"Total"}}))

2)Try this measure:

Measure = 
SWITCH (
    SELECTEDVALUE ( 'Table 2'[New X-axis] ),
    "Total", CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table' ) ),
    "1/1/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 1 ) ),
    "1/2/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 2 ) ),
    "1/3/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 3 ) ),
    "1/4/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 4 ) ),
    "1/5/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 5 ) ),
    "1/6/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 6 ) ),
    "1/7/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 7 ) ),
    "1/8/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 8 ) ),
    "1/9/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 9 ) ),
    "1/10/2020", CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = DATE ( 2020, 1, 10 ) )
)

3)The result shows:

21.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto

Anonymous
Not applicable

Hi, 

@v-gizhi-msft : I have to show Total of all bar's values on single point as I have mentioned in the image above in my question.

@amitchandak : I have been tried this but card visual doesn't appear when i do click on focus mode of  bar visual.

amitchandak
Super User
Super User

@Anonymous 

What I have seen is.

Put a Card visual on the bar or any visual and group them together

https://docs.microsoft.com/en-us/power-bi/desktop-grouping-visuals

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors