Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

DAX New Column and Substitute

Hi All I am trying to understand how to create a new column from one table to within another table and replace any blanks within the new column with "No Record" text. The following does not replace...
  • Pragati11's avatar
    5 years ago

    Hi Anonymous ,

     

    You can try a calculated column as follows:

    UPN = IF(RELATED(users[userPrincipalName]) = BLANK(), "No Record", RELATED(users[userPrincipalName]))

     

    Thanks,

    Pragati