I am trying to patch a sharepoint list item but it is showing that the request is invalid, and I can't figure out why.
Patch('VFRS App Vehicles',
LookUp('VFRS App Vehicles',
VIN = Reservation.VIN),
{ Mileage: NewMileage});
VIN is a single line of text, Mileage is a number (might need to add .Value since NewMileage is a text box, but that doesn't fix my issue). I'm seeing that error 8 is a constraint violation, but I don't know why I would need to update any other fields if I just want to change one.