If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > Nonprinting characters

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-22-09, 10:11
BCBud BCBud is offline
Registered User
 
Join Date: May 2009
Posts: 2
Nonprinting characters

I need to add non printing characters to some cells, this is for code that will run in many different files and these non printing chars will be used to find input areas.

How can i do this? Is this the best way to handle this? I can't use a named range and the inputs will be in different places in diff files. Also the end user wants to make sure no one will know that this is in the file.

Thank you.
Reply With Quote
  #2 (permalink)  
Old 05-26-09, 10:07
mikezx10 mikezx10 is offline
Registered User
 
Join Date: Oct 2003
Posts: 226
I dont know about non printing chars but i use the elipsis

ActiveCell.Value = ActiveCell.Value & Chr(133)

Dim s As String
s = Chr(133)


Cells.Find(What:=s, After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate

hope it helps as far as not displaying or printing thats a good idea, maybe change the color of the text to the back color of cell for not displaying, but not printing i dont know
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On