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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LalitoBLM
New Member

The card visual is not displaying "all"

Hi,

 

I'm very new to PowerBI but I visit discussions on these forums for the great help in my development.

 

I'm working on a simple report to display and filter instruments by type showing the count for each. I have used the following code to seach Column1 for values Value1 and Value2 and assign ValueA to them under the JointInstType:

 

 

JointInstType = IF(
	ISERROR(
		SEARCH("Value1", Table1[Column1])
	),
	IF (ISERROR(
		SEARCH("Value2", Table1[Column1])
	),
FIRSTNONBLANK(Table1[Column1], 1),
"ValueA"),
	"ValueA"
)

 

 

The report works; however, the for the "select all" slicer it displays ValueA which should display "All".

How do I change the code to display all?

 

I appreciate your help.

1 REPLY 1
nandukrishnavs
Community Champion
Community Champion

@LalitoBLM 

 

Try below DAX.

JointInstType =
IF (
    ISERROR ( SEARCH ( "Value1", Table1[Column1] ) ),
    IF (
        ISERROR ( SEARCH ( "Value2", Table1[Column1] ) ),
        FIRSTNONBLANK ( Table1[Column1], 1 ),
        "ValueA"
    ),
    IF ( NOT ( ISFILTERED ( Table1[SlicerColumn] ) ), "All", "ValueA" )
)

 

If this is not working then please share the PBIX file or sample input table and expected output.



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂

 


Regards,
Nandu Krishna

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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