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.
Anonymous
3 years agoNot applicable
amitchandak I tried this, but get a "no" when the "IQ" last name should give a "yes" result.
Final =
IF (
[FirstName] = BLANK ()
&& [LastName] = BLANK (),
BLANK (),
IF(
EXACT(UPPER('132330'[Prefix] &'132330'[FirstName] &'132330'[LastName] &'132330'[Suffix] &'132330'[PreferredName] &'132330'[HomeAddress1] &'132330'[HomeAddress2] &'132330'[HomeCity] & '132330'[Email]) , '132330'[Prefix] &'132330'[FirstName] &'132330'[LastName] &'132330'[Suffix] &'132330'[PreferredName] &'132330'[HomeAddress1] &'132330'[HomeAddress2] &'132330'[HomeCity] & '132330'[Email])
, "yes", "no"))
v-zhangti
3 years agoCommunity Support
Hi, Anonymous
You can try the following methods.
Uppercase =
IF (
[FirstName] = BLANK ()
&& [LastName] = BLANK (),
BLANK (),
IF (
EXACT ( UPPER ( '132330'[FirstName] ), '132330'[FirstName] )
|| EXACT ( UPPER ( '132330'[LastName] ), '132330'[LastName] )
||EXACT ( UPPER ( '132330'[Name] ), '132330'[Name]),
"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.