Forum Discussion
JJones
OneStream Employee
6 hours agoCan you give this a shot in a Parser Rule:
Dim defaultValue As Decimal = "0.00"
'Check the source value that was parsed
If args.Value.Length = 0 Then
'Nothing was found on this row, so return the default
Return defaultValue
Else
'This line has a value, so just return that value
Return args.Value
End If
Related Content
- 2 months ago