
Announcements
Good night,
I need to know what the formula is to save the information contained in a rich text box.
This is my formula:
UpdateIf('BD Clientes';
Id = GalVisitas.Selected.'Visita No';
{
Actividad1: RichTextTarea1.HtmlText
}
)
Try to rewrite your formula using Patch, I assume you are placing it in the OnSelect property of your button, replace that UpdateIf you have now with the below instead:
Patch(
'BD Clientes';
LookUp('BD Clientes'; Id = GalVisitas.Selected.'Visita No');
{ Actividad1: RichTextTarea1.HtmlText }
)
I am assuming "Id" is the actual, true name of your column in 'BD Clientes'.
If it is not, use the actual name.
If that part with the "Id" doesn't work or make sense what to replace it with, then please provide more info in a reply, about what GalVisitas.Selected.'Visita No' is supposed to mean, and which column in 'BD Clientes' is associated with this 'Vista No'.
If that idea is not even correct at all, then tell me more instead what you are trying to do and more info about both GalVisitas (and which Table in Dataverse its pointing to right now, check the Items property of the GalVisitas Gallery and tell me the formula in your reply) and also tell more info about 'BD Clientes' and how it is supposed to be related with what is in the Items property of GalVisitas.
See if it helps @CarlosN