Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Edit a Single Cell

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 : 

 

data.PNG

 

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,

 
 
 
1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

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.

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

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.

Greg_Deckler
Community Champion
Community Champion

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]
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Have you tried to replace it using Power Query ?



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.