Definition for sp characteres in vba

santoshloka

Board Regular
Joined
Aug 31, 2017
Messages
125
i couldnt find this meaning in google search,i want to know about this special characteristics for?

1)*#*
2)"*"
3)"@"
4)"???.???"
5)xlWhole, , , , False, True
6)"[!0-9A-Za-z]"
7)"."
8)Cells(@,1)
9)""
 
Last edited:

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Re: Defination for sp characteres in vba

i couldnt find this meaning in google search,i want to know about this special characteristics for?

1)*#*
2)"*"
3)"@"
4)"???.???"
5)xlWhole, , , , False, True
6)"[!0-9A-Za-z]"
7)"."
8)Cells(@,1)
9)""
You cannot ask that question without putting each of them into some kind of context. In and of themselves, they are just collections of characters... they can only take on special meaning when placed in use somewhere.
 
Upvote 0
Re: Defination for sp characteres in vba

1)For X = 1 To Len(Data(R, C))
If Mid(Data(R, C), X, 1) Like "[!0-9A-Za-z]" Then Mid(Data(R, C), X) = " "
Next
2)If Data(R, C) Like "*#* *#* *#* *#*" Then
Data(R, C) = Replace(Application.Trim(Data(R, C)), " ", ".")
Else
3).NumberFormat = "@"
4).Replace "???.???", "", xlWhole, , , , False, True
5) Data(R, C) = Replace(Application.Trim(Data(R, C)), " ", ".")
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,154
Members
453,021
Latest member
Justyna P

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