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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
esuryahadi
Helper I
Helper I

Help for card visual

I have the following data,

Title RKProgressField
FPP FSA AGN68,48SS
FPP FSA SS62,35SS
Bridge SS4,61TSS
Submarine (UMHK) 11,32TSS
Workshop RAM Field90SS
Renovasi Mess 52,01SS
2 Unit Boiler0TSS

 

I want to display in a visual card only the respective progress values. When I select one of the Bridge SS examples, the value will appear as 4.61. If there is no choice, the value will appear as 0. I have difficulty with this because if there is no choice, the SUM amount from the progress column will appear.

1 ACCEPTED SOLUTION

hi @esuryahadi ,

then try like:

measure = 
IF(
    ISFILTERED(data[Title RK]) || ISFILTERED(data[Field]),
    SUM(data[Progress]),
    0
)

View solution in original post

4 REPLIES 4
FreemanZ
Super User
Super User

hi @esuryahadi ,

try to plot the card visual with a measure like:

measure = 
IF(
    ISFILTERED(data[Title RK]),
    SUM(data[Progress]),
    0
)

 

it worked like:

FreemanZ_0-1698304312724.pngFreemanZ_1-1698304324188.png

 

Thank you, but i have little problem.

how if filter by field ?

 

Screenshot 2023-10-26 153159.png

hi @esuryahadi ,

then try like:

measure = 
IF(
    ISFILTERED(data[Title RK]) || ISFILTERED(data[Field]),
    SUM(data[Progress]),
    0
)

Thank you so much.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.