Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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 ...
  • v-zhangti's avatar
    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.