I'm trying to find the string "ggiv" w/in a database field and then accumulate the counter variable by one. It is giving me nothing but 0. I put it in the detail and the RF section of the Report but I still get 0's. Here is the formula below:
WhileReadingRecords;
numberVar ggivCounter;
if InStr(1,{TurnOver_Logs_v2._3},"ggiv" = 1 then
(
ggivCounter := ggivCounter + 1;
);