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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
JothiKrishnan
New Member

Need to create a card chart which shows sum of multiple values in a column

Hi Team, 

 

I need a create a Text Card, which needs to show the selected values in a single column, please help me on this

1 ACCEPTED SOLUTION

Is using a measure like @jgeddes show you before.
The measure is this:

NameSubCateg = CONCATENATEX(T_SubCateg,T_SubCateg[SubCategory], " | ")

T_SubCateg is my table and SubCategory is my column.





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




View solution in original post

10 REPLIES 10
v-kongfanf-msft
Community Support
Community Support

Hi @JothiKrishnan ,

 

Did @_AAndrade  reply solve your problem? If so, please mark it as the correct solution, and point out if the problem persists.

 

Best Regards,
Adamk Kong

jgeddes
Super User
Super User

You can create a comma delimited list with...

SelectedColumns = 
CONCATENATEX(
    VALUES('Table'[item]),
    [item],
    ", "
)

where 'item' is the name of the column with your values in it.




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





@jgedde - Thank you for your assistance. The data I intend to use are in the same column, not a separate one. The column I require contains 1000 rows with distinct fields; I only need certain fields to be displayed as a KPI in the card view.

Ok. If you can share some data, or some dummy data that shows the baseline as well as your desired result it will be easier to provide a valid solution.




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





_AAndrade
Super User
Super User

Please Share same data and the desired output to clear understand your request.





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




I've attached two images: the first one displays the total number of sub category list, and the second one displays the list of sub cateogiry. However, my scenario is for the text chart to display only the number of selected sub category, so in order to visualize it, I need to extract only the relevant sub category list from the selected column with out using slicer.card view.JPGdoubt.JPG

I've attached two images: the first one displays the total number of sub category list, and the second one displays the list of sub cateogiry. However, my scenario is for the text chart to display only the number of selected sub category, so in order to visualize it, I need to extract only the relevant sub category list from the selected column with out using slicer.card view.JPGdoubt.JPG

Like this:

_AAndrade_0-1712180404971.png

In my example I only have 6 subcategories.





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




Yes, how u did that, please help me on this

 

Is using a measure like @jgeddes show you before.
The measure is this:

NameSubCateg = CONCATENATEX(T_SubCateg,T_SubCateg[SubCategory], " | ")

T_SubCateg is my table and SubCategory is my column.





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.