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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

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

@Anonymous 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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.