Forum Discussion
Anonymous
6 years agoNot applicable
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...
- 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] ) )
parry2k
Super User
6 years agoAnonymous 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] ) )