Hi,
I got a strange case where power apps doesn't want to refresh my column.
For context, I got a datatable that is displaying some columns from a dataverse table.
The dataverse table got 2 fields (There's more, but they aren't relevant):
- "Statut Document" of type Choice (Statut Facture)
- "Display Status" of type Yes/No.
On powerapps's side, I got a column to display "Status Document". If "Display Status" is true, then it should return the value of the column "Status Document", if not, it should return a preset value of the "Statut Facture" choice
So I put this formula in the Text property:
If(ThisItem.'Display Status', ThisItem.'Statut Document', 'Status Facture'.Envoyé)
The only problem is that when "Display Status" or "Status Document" change in dataverse, it doesn't reflect the changes, even when using Refresh() on the table, while other columns do update normally
The following formula does update:
If(ThisItem.'Display Status', "Yes", "No")
Any help on this? Feel free to request for more info