Hey all, I'm trying to label some wells with their ID and analyte value, but if the well has a zero I don't need it labeled. Could anyone take a look at what I've got so far? I keep getting an error, but I can't seem to figure it out. The function is calling our 'Silica', and I"m wondering if this field needs to be all uppercase?
Function AnValue ( [LOCID] , [Silica] ) if ( [Silica] > 0 then AnValue = [Silica] end if End Function