I have a multivalue field containing values of A,B,C and D with primary IDs of 1,2,3 and 4 in that order.
If I was to run:
UPDATE Table
Set Table.Multivalue.Value = 1
WHERE Field 1 = "True" AND Field 2 = "True";
Then run
UPDATE Table
Set Table.Multivalue.Value = 2
WHERE Field 1 = "True" AND...