Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
I'm having blank values caused by relationship and with no matched record. But I want to replace it with "Not assigned" text
Solved! Go to Solution.
Hi @Anonymous ,
Thanks for using Microsoft Fabric Community Forum.
Try using the below DAX to create a new column.
Related two tables
Used the newly created column in the visual
Here you can see the blanks are being replaced by Not assigned.
Hope this works for you.
If this helps , please accept as solution to help others find easily and a kudos would be appreciated.
Thank you.
Hi @Anonymous ,
Thanks for using Microsoft Fabric Community Forum.
Try using the below DAX to create a new column.
Related two tables
Used the newly created column in the visual
Here you can see the blanks are being replaced by Not assigned.
Hope this works for you.
If this helps , please accept as solution to help others find easily and a kudos would be appreciated.
Thank you.
GREAT! It worked. But the DAX only worked for Import mode. Any idea how the DAX be working with Direct Query?
Glad that the DAX worked in Import mode.
The reason it didnt work in DirectQuery is because DirectQuery limits complex DAX functions, leading to performance issues and potential query failures.LOOKUPVALUE can struggle in DirectQuery mode because it generates complex queries that the backend may not efficiently support.
Use this DAX to create a new column for DirectQuery :
@Anonymous
Create a new column:
Acct Assignment Order - Text (Updated) =
IF(
ISBLANK('YourTable'[Acct Assignment Order - Text]),
"Not assigned",
'YourTable'[Acct Assignment Order - Text]
)
💌 If this helped, a Kudos 👍 or Solution mark ✅ would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
not working. Acct Assignment Order - Text field & Purchasing Document Key is coming from different table. They are related using Order Key field. When I created the relationship, it shows blank values due to unmatched record.
Hi @Anonymous
check this video for better understanding.
https://www.youtube.com/watch?v=dp0W8B6FAmc
https://www.youtube.com/watch?v=tl92KE_3DMw
https://www.youtube.com/watch?v=rqO0kx1P1VU
I hope above videos would help you!
Hi @Anonymous
Can you share the PBIX file and remove critical data from it??
Hi @Anonymous ,
What column do you want to replace with "Not assigned"? are you using dax? show us the DAX used, give more context, just to understand your problem.
I'll be replacing Acct Assignment Order - Text field to "Not assigned". When I created the relationship, it shows blank values due to unmatched record. I tried using below DAX, but it's not working
Its possible to share no sensitive file to see the problem closer?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 39 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 34 | |
| 32 | |
| 29 |