I am currently doing this to add to an existing cumulative value in a SharePoint list:
UpdateIf(DataSource, Title = varRecord.Title,
{
DevHours: DevHours + Value(TextInputDevelopmentHours.Text)
}
)
I need to make some changes to my overall formula and would like to use Patch instead to avoid any delegation issues down the line. It doesn't seem that Patch supports this type of adding values together.
Is UpdateIf the only function that allows this? I would rather avoid a lookup to get the current value if at all possible.