-
Excel VBA ベーシック
8-3)数値を操作する関数
8-3-1)数値の丸め Round関数 数値を指定した桁数に丸めます。 Dim roundedValue As Double roundedValue = Round(5.6789, 2) Debug.Print "Round(2):" & rounded... -
Excel VBA ベーシック
8-2)文字列を操作する関数
8-2-1)文字列の長さを取得 len関数 文字列の長さを取得します。 Dim str As String Dim length As Integer str = "Hello, World!" length = Len(str) ' length は 13 に... -
Excel VBA ベーシック
8-1)日付と時間を操作する関数
8)関数 8-1)日付と時間を操作する関数 Now: 現在の日付と時間を取得します。 Now: 現在の日付と時間を取得します。 Dim currecurrenntDateTime As Date currecurren... -
Excel関数
自分で作る関数 フリガナをつける
自分で作る関数 フリガナをつける カタカナとヒラガナでフリガナをつける関数を自分で作りましょう カタカナのフリガナ =カタカナ(B2) ひらがなのフリガナ =ひらがな(B...
1