Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Same client ID with different name variations

I am trying to segment data from clients but I have one problem: There are different name variations (or typing errors) for the same client ID.   ID First Name Last Name   0918745654  Wil...
  • parry2k's avatar
    6 years ago

    Anonymous you can create measure to get first and last name, and write another measure for Last Name

     

    My First Name = 
    CALCULATE ( MAX ( Table[FirstName] ), ALLEXCEPT ( Table, Table[Id] ) )