I have the following Formula Field in the detail section of a report…
If IsNull({ado.AMOUNT}) = False Then
Formula = {ado.amount}
Else
Formula = 0.00
End if
The Horizontal Alignment for the field is set to “Right”. For some reason when ado.AMOUNT is Null the zero value of the formula is displayed to the right but which is correct but it is off by one position to the left.
See Example..
AMOUNTS
$0.00
$10.00
Anyone know why this is happen?
If IsNull({ado.AMOUNT}) = False Then
Formula = {ado.amount}
Else
Formula = 0.00
End if
The Horizontal Alignment for the field is set to “Right”. For some reason when ado.AMOUNT is Null the zero value of the formula is displayed to the right but which is correct but it is off by one position to the left.
See Example..
AMOUNTS
$0.00
$10.00
Anyone know why this is happen?