Forum Discussion
Anonymous
3 years agoNot applicable
Find upper case string in multiple columns
I learned how to use this and it works for one column. Uppercase = IF( EXACT(UPPER('132330'[FirstName]), '132330'[FirstName]) , "yes", "no") Is it possible to edit it so it ...
- 3 years ago
Hi, Anonymous
Column:
Uppercase = IF ( [FirstName] = BLANK () && [LastName] = BLANK (), BLANK (), IF ( EXACT ( UPPER ( '132330'[FirstName] ), '132330'[FirstName] ) && EXACT ( UPPER ( '132330'[LastName] ), '132330'[LastName] ), "yes", "no" ) )Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
3 years agoCommunity Support
Hi, Anonymous
Column:
Uppercase =
IF (
[FirstName] = BLANK ()
&& [LastName] = BLANK (),
BLANK (),
IF (
EXACT ( UPPER ( '132330'[FirstName] ), '132330'[FirstName] )
&& EXACT ( UPPER ( '132330'[LastName] ), '132330'[LastName] ),
"yes",
"no"
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot applicable
v-zhangti thank you very much for the method to remove the false result when the Prefix field is empty.
That worked!