Forum Discussion
johunt
9 years agoNew Member
Error in FIND/SEARCH function
I keep getting the following error The search Text provided to function 'SEARCH' could not be found in the given text. when i put in this formula UK Region = IF(ISNUMBER(SEARCH("region",Table1[...
johunt
9 years agoNew Member
Fantastic! That worked! Thank you so much
v-chuncz-msft
9 years agoCommunity Support
You could use DAX below as well.
UK Region = IF ( SEARCH ( "Region", Table1[Region],, 0 ) > 0, "UK", "International" )