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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Enter data Lively - After creating a Column

Hello Community,

 

I have a column as below; I need to one more column “Comments” where I need to manually enter some text.1.png

So, I added a Custom column with empty data as below:

 

2.png

Now I want to enter data in the Comments Column as below in the visual and get the report saved:

 

Name

Comments

Orange

This may be a Fruit / Color

Yellow

This is a color

Apple

This is a Fruit

Black

This is a color

Grapes

This is a Fruit

 

Are there any possible ways to achieve this?

 

Please help me @po @v-frfei-msft @v-diye-msft @sturlaws @v-lid-msft @JosefPrakljacic @Nathaniel_C @v-eachen-msft 

1 ACCEPTED SOLUTION

Hey,

 

what you want is the writeback in the visual. Unfortunately this is not that easy. Either you use PowerApps as input mask (but then you can't write back directly in a table visual) or you use thirdparty providers like Acterys or PowerOnBi for the writeback.

 

This is not possible with PowerBI alone.

 

Best regards,
Josef

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , Create a column comment like

 

Switch([Name],
"Orange" , "This may be a Fruit / Color",
"Yellow" , "This is a color",
"Apple" , "This is a Fruit" // add more as per need
)

 

Switch(true() ,
[Name]="Orange" , "This may be a Fruit / Color",
[Name]="Yellow" , "This is a color",
[Name]="Apple" , "This is a Fruit"// add more as per need
)
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hey,

 

what you want is the writeback in the visual. Unfortunately this is not that easy. Either you use PowerApps as input mask (but then you can't write back directly in a table visual) or you use thirdparty providers like Acterys or PowerOnBi for the writeback.

 

This is not possible with PowerBI alone.

 

Best regards,
Josef

Hi,

 

Combining PowerApps with direct query mode allows instant update of a visual with data written to the source via the powerapp.

 

Cheers,
Sturla

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors