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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

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
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Kudoed Authors