This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I am trying to edit the data through Power BI Desktop. We have a lot of data that needs manually modified, but it seems the replace function does not work on a single cell. How would someone suggest to manually modify data in Power Bi? All of this data comes from a source that cannot be modified prior to coming into Power BI. (Trying to automate a report).
I want for example for this data :
to replace the empty cell in country by "UK" wen the ID=id2 and "FR" when the ID=id5.
Thank you for your help.
Best regards,
Solved! Go to Solution.
Hi @Anonymous ,
If you cannot modify the data in the query editor, you can only use DAX to create new columns as @Greg_Deckler said.
Because there is no concept of cells in power Bi, you can only use DAX to create new columns, or use M query in query editor to modify the data.https://radacad.com/conditional-column-in-power-bi-using-power-query-you-can-do-anything
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
If you cannot modify the data in the query editor, you can only use DAX to create new columns as @Greg_Deckler said.
Because there is no concept of cells in power Bi, you can only use DAX to create new columns, or use M query in query editor to modify the data.https://radacad.com/conditional-column-in-power-bi-using-power-query-you-can-do-anything
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could create a new column like:
if [ID] = "id2" then "UK" else if [ID] = "id5" then "FR" else [country]
or in DAX
SWITCH([ID],
"id2","UK",
"id5","FR",
[country]
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |