Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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 the Blanks with text. But, I am unsure how to structure my code...
UPN = SUBSTITUTE(RELATED(users[userPrincipalName]), "", "No Record")
Could anyone please help me to understand?
Many thanks
Solved! Go to Solution.
Hi @Anonymous ,
You can try a calculated column as follows:
UPN = IF(RELATED(users[userPrincipalName]) = BLANK(), "No Record", RELATED(users[userPrincipalName]))
Thanks,
Pragati
Thank you @Pragati11
Yes. Your solution worked for me.
I also, worked out the following solution...
Hi @Anonymous ,
You can try a calculated column as follows:
UPN = IF(RELATED(users[userPrincipalName]) = BLANK(), "No Record", RELATED(users[userPrincipalName]))
Thanks,
Pragati
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
72 | |
62 | |
51 | |
48 |
User | Count |
---|---|
206 | |
90 | |
62 | |
59 | |
57 |