From: khanner on
this never used to show up till now.

'Compute Appraisal Value
If BBG("Orig# LTV").Value < 1 Then ltv = BBG("Orig# LTV").Value Else
ltv = BBG("Orig# LTV").Value / 100
loantape("OrigAppraisalValue").Value = CLng(BBG("Orig# Amt").Value)
/ CLng(ltv)
From: Jerry Whittle on
>> If BBG("Orig# LTV").Value < 1
>> Then ltv = BBG("Orig# LTV").Value

0 < 1 is true so you need to make sure that BBG("Orig# LTV").Value isn't 0.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.


"khanner" wrote:

> this never used to show up till now.
>
> 'Compute Appraisal Value
> If BBG("Orig# LTV").Value < 1 Then ltv = BBG("Orig# LTV").Value Else
> ltv = BBG("Orig# LTV").Value / 100
> loantape("OrigAppraisalValue").Value = CLng(BBG("Orig# Amt").Value)
> / CLng(ltv)