Glad you found a solution. It occurs to me that the expression could error if DailyincreaseGB is 0 because with an IIf all terms of the expression must be able to be evaluated, even if it is not the term that returns the value. Handle the possibility of division by 0 with an IIf to provide an alternate value, in this example Null:
IIf([DailyincreaseGB]=0,'No Change',IIf([DailyincreaseGB]>0,'Decrease Of Used',Int(Round(LFAS02Aggr3DateComparison.LastFree GB/IIf(DailyIncreaseGB=0,Null,DailyIncreaseGB),1)))