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

18 lines
336 B
QBasic

Attribute VB_Name = "WriteEarningsPerShare"
Option Explicit
Function run(row As Integer, content As String)
On Error GoTo eh
Worksheets(TARGET_SHEET).Range(COL_EARNINGS_PER_SHARE & CStr(row)).Value = content
Done:
Exit Function
eh:
Debug.Print "WriteEarningsPerShare"
Debug.Print row
Debug.Print content
End Function