Change code for hide port of text in one cell

Yaghoub61

New Member
Joined
May 1, 2019
Messages
7
hi, everyone

I want to change the following code to hide the port of text in one cell whit ";;;".
Can you help me??


Private Sub Worksheet_Change(ByVal Target As Range)
Dim AOI As Range
Dim c As Range

Set AOI = Range("A1:A20")
If Not Intersect(Target, AOI) Is Nothing Then
Application.EnableEvents = False
For Each c In Intersect(Target, AOI)
With c
If .Text Like "####/##/##" Then
.Value = .Text
.Characters(1, 8).Font.Color = _
vbWhite

End If
End With
Next c
End If
Application.EnableEvents = True
End Sub







'Private Sub Worksheet_Change(ByVal Target As Range)
'If Target.Address = Range.Address Then
'For Each VariantValue In OtherRange
' If Range.Value = VariantValue Then
' Range.NumberFormat = ";;;"
' ' End If
' 'Next
'End If
'End Sub


thank you so much
 
Last edited:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

Forum statistics

Threads
1,214,784
Messages
6,121,538
Members
449,038
Latest member
Guest1337

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