Files
004_comission/armandarmand/task1/task1-ticket1/helloworld/browser/hello-aastock/WritePERatioExpected.bas
louiscklaw ce9a4aa9b3 update,
2025-01-31 19:27:58 +08:00

17 lines
333 B
QBasic

Attribute VB_Name = "WritePERatioExpected"
Option Explicit
Function run(row as integer, content as string)
On Error GoTo eh
Worksheets(TARGET_SHEET).Range(COL_P_E_RATIO_EXPECTED & CStr(row)).Value = content
Done:
exit Function
eh:
debug.print "WritePERatioExpected"
debug.print row
debug.print content
End Function