在ActiveX文本框中分开1000

时间:2019-03-05 10:38:33

标签: excel

我想知道如何在ActiveX文本框中分隔1000。我在“属性”中搜索了某种“格式”字段,但无法弄清楚如何实现?

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:2)

只需使用您的格式向文本框添加一个更改事件

Private Sub TextBox1_Change()
    Me.TextBox1.Text = Format(Me.TextBox1.Text, "#" & Application.ThousandsSeparator & "###")
End Sub

答案 1 :(得分:0)

我知道了。

因此,右键单击ActiveX文本框->查看代码。

Private Sub TextBox12_Change()
    TextBox12.Value = Format(TextBox12.Value, "###,##")
End Sub