I have an application that's supposed to calculate the total weight of colorants used in a bucket of paint. It takes the specific gravity value from a SharePoint list and input from user to specify the unit of the colorant and prints the result in a box.
The app was working just fine, but then I changed some values and names of the list in use (maybe some properties too?) and now the app is for some reason calculating with 0 instead of the values form the list. If it has any relevance, the app is working totally fine under development on my pc.

SG = specific gravity value from list
UNIT = user specified
GO = uses formula to print result: Set(VARTotal, canSize.SelectedText.Value*0.3080576*SG20.Text*UNIT20.Text);