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

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

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.