Hello to all the PowerApps community,
I'm facing a problem with the UpdateIf function. According to Microsoft Guidelines I'm trying to update a single Record in a data verse Table called Azienda_Anagrafico_listini_righe.
The table initially looks like this:

Now I want to update just only the price Prezzo_netto for the code ABC, and I have added in button the following code:
UpdateIf(Azienda_Anagrafico_listini_righeP, ThisRecord.Codice="ABC",
{
Prezzo_netto: Prezzo_netto*0.1
});
Refresh( Azienda_Anagrafico_listiniP );
I expect that only "Prezzo_netto" will be updated for the record ABC.
But after clicking the button I got the following empty columns in the Dataverse Table:

Prezzo_netto has successfully updated, but Codice and Descrizione have been deleted.
Any Idea about this flaw ?
Thanks to all.
Michele