UDF - Hello World

  1. 開啟 Excel
  2. 開啟 Visual Basic 編輯器(請參閱開啟 Visual Basic 編輯器
  3. 單擊插入 - >模組新增新模組:

StackOverflow 文件

  1. 將以下程式碼複製並貼上到新模組中:
Public Function Hello() As String
'Note: the output of the function is simply the function's name
Hello = "Hello, World !"
End Function

獲得:

StackOverflow 文件

  1. 返回到你的工作簿並在單元格中鍵入“= Hello()”以檢視 Hello World

StackOverflow 文件