17 lines
310 B
QBasic
17 lines
310 B
QBasic
Attribute VB_Name = "WriteFundFlow"
|
|
Option Explicit
|
|
|
|
Function run(row as integer, content as string)
|
|
On Error GoTo eh
|
|
Worksheets(TARGET_SHEET).Range(COL_FUND_FLOW & CStr(row)).Value = content
|
|
|
|
Done:
|
|
exit Function
|
|
|
|
eh:
|
|
debug.print "WriteFundFlow"
|
|
debug.print row
|
|
debug.print content
|
|
|
|
End Function
|