以下為記載撰VBA時,一些用到的語法,以便備查
目錄:
1、字串強迫換行 |
VBA Msgbox 換行方法 : vbCrlf
ex:
msgbox "第一行" & vbCrlf & "第二行"
ex:
'設定數值格式 & 欄位插入註解時:
Columns([EXCEL自訂公式名稱].Column).Select '或改寫Range("A:B").select 或 Columns("A:B").Select
Selection.NumberFormatLocal = "#,##0.00_);(#,##0.00)"
'插入註解
With Selection.Validation
.Delete
.Add Type:=xlValidateInputOnly, AlertStyle:=xlValidAlertStop, Operator _
:=xlBetween
.InputTitle = "◆單位提醒 = %◆"
.InputMessage = "公式:" & vbCrLf & " (當月-上月)/上月*100%"
.ShowInput = True
End With
'注意的是當使用在插入註解時,其註解內的訊息框本為字串,故需在前後加入"",而在加入換行符號之前後,亦要加入""
-----------------------------------------------------
2、Range屬性參照
留言列表