Textbox blank if zero

asyamonique

Well-known Member
Joined
Jan 29, 2008
Messages
1,280
Office Version
  1. 2013
Platform
  1. Windows
Code:
If TextBox7.Value = 0 Then TextBox7.Value = ""

Hello,
I have plenty of textboxes on my userform.
If the textbox value is zero I want to make it zero as in sample above.
Is it possible to make it with a code for all the textboxes?
Thanks.
 
Last edited:

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try this:
Code:
Private Sub CommandButton3_Click()
 'Modified  3/28/2019  11:34:36 PM  EDT
 For Each xcontrol In Me.Controls
            If TypeName(xcontrol) = "TextBox" Then
                If xcontrol.Value = "0" Then xcontrol.Value = ""
            End If
            
        Next xcontrol
End Sub
 
Upvote 0
Sorry for wrong typing.
I want to keep the textboxes blank if their values are zero.
Thanks
:)
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,942
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top