I have ten columns called image1, image2...image10, I want to update the value of one column to a new value, but it must only update the one column which is equal to the value I supply.
For example lets the supplied value is 1, and I want to change it to a string such as "C:/folder/subfolder".
I was thinking is there some if statement such as "if image1 = 1 set image1 = "C:/folder/subfolder" else if image2 = 1 set image2 = "C:/folder/subfolder", etc?