Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Not sure why I'm stumped here, but I am, so I'm hoping for some help. I have a table with duplicate UUIDs from one Database. I have columns that may contain text, or may not contain text. I have been trying to create a new calculated column that will lookup the UUID, see if there are values within column "DB1.Name" that contain text, and if so, then say "Found" in this new calculated column.
Please see image below for a visualization I made in Excel for what I would love help with.
Thanks for any help in advance!
Solved! Go to Solution.
@Syndicate_Admin there are many ways to do this, here is using ALLEXCEPT function:
Found =
VAR __cnt =
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table','Table'[UUID] ),
COALESCE ( 'Table'[db1.name], "" ) <> ""
)
RETURN
IF ( NOT ISBLANK ( __cnt ), "Found", "Not Found" )
COALESCE is used to check both empty string values and null values.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.
@Syndicate_Admin there are many ways to do this, here is using ALLEXCEPT function:
Found =
VAR __cnt =
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table','Table'[UUID] ),
COALESCE ( 'Table'[db1.name], "" ) <> ""
)
RETURN
IF ( NOT ISBLANK ( __cnt ), "Found", "Not Found" )
COALESCE is used to check both empty string values and null values.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 39 | |
| 37 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 120 | |
| 95 | |
| 70 | |
| 69 | |
| 65 |