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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ccarbone
New Member

If statement with wildcards

Hello, 

 

I have about 15 years of data broken out into 4 categorys based on season FA, WI, SP, SU. I am attempting to label each label as Fall, Winter, Spring, Summer.  The data looks like 2020/FA, 2019/FA, 2018/FA...etc for all seasons. 

 

Currently I am doing an endless if by IF(Table = "2020/FA", "Fall", IF (Table = "2020/SP", Spring, IF....

 

This is turning into a very long and repetative processs and I was experimenting with wildcards (*,?) trying to be able to get, 

 

IF(Table = "????/FA", "Fall", IF (Table = "????/SP", Spring, IF...., but neither * or ? was getting picked up as a wildcard. 

 

Should the wildcard characters be outside of the "" or am I having my logic wrong any help is appricated, does not have to be an if statement. 

2 REPLIES 2
colacan
Resolver II
Resolver II

@ccarbone Hi, you can try below CALCUALTE COLUMN;

 

Season =
SWITCH(True,
SEARCH("SP",TABLE[YearSeason],,BLANK())>0,"SPRING",
SEARCH("SU",TABLE[YearSeason],,BLANK())>0,"SUMMER",
SEARCH("FA",TABLE[YearSeason],,BLANK())>0,"FALL",
SEARCH("WI",TABLE[YearSeason],,BLANK())>0,"WINTER", BLANK()
)
 
Thanks
 
Please mark as soluntion if this helped.

 

 

irfanelevated
Helper II
Helper II

Hello,

 

You can try the Containsstring function.

https://docs.microsoft.com/en-us/dax/containsstring-function-dax

 

Thanks,

Irfan

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors