Advertisement
Advertisement
| 12.04.2007 at 07:40AM PST, ID: 23000396 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
Function Main()
If IsNull(DTSSource("BTN")) Then
Main = DTSTransformStat_SkipRow
Exit Function
ElseIf IsNumeric(DTSSource("BTN")) Then
DTSDestination("BTN") = CDbl(DTSSource("BTN"))
End If
DTSDestination("RequestID") = DTSSource("RqstID")
Main = DTSTransformStat_OK
End Function
|