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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Shruthi96
Helper III
Helper III

Help DAX command - If else statement

Hi Team , 

Need Help 

I am looking for the Dax column formula, where I have 3 work types and 2 products:
Product A : It should pull all the rows
For Product B :
                        Feature - It should pull all the rows
                        Bug Fix - It should pull all the rows
                        For Enhancement - It should pull only the rows which as "a11y" anywhere in the description column.

 

Shruthi96_1-1652867235970.png

 

Many thanks 

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@Shruthi96 

 

 

Required_Output_Column = 
SWITCH(
	TRUE(),
        'Table'[Product] = "A", "Y",
	'Table'[Work Type] IN {"Feature", "Bug Fix" }, "Y",
	SEARCH("a11y", 'Table'[Description], 1, 0 ) >=1 , "Y",
	"N"
)

 

 


2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png  SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

View solution in original post

4 REPLIES 4
Shruthi96
Helper III
Helper III

Thanks @SpartaBI 

Shruthi96
Helper III
Helper III

Thanks @SpartaBI  for replying. Formula should look for Product also. 

@Shruthi96 oh ye, missed that. I edited the furmula in the original message

SpartaBI
Community Champion
Community Champion

@Shruthi96 

 

 

Required_Output_Column = 
SWITCH(
	TRUE(),
        'Table'[Product] = "A", "Y",
	'Table'[Work Type] IN {"Feature", "Bug Fix" }, "Y",
	SEARCH("a11y", 'Table'[Description], 1, 0 ) >=1 , "Y",
	"N"
)

 

 


2022-05-09 22_36_04-Power BI Workspace Datasets License Permissions - Microsoft Power BI Community.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png  SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.