Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
laheq
 
Posts: n/a
Default Remove Second Language From my Document


I have a huge document that has many sheets and in every sheet there
some fields are in English and some in Russian. I want to Remove All
the russian text from my document.

If you have any Idea, please help.
Thank you


--
laheq
------------------------------------------------------------------------
laheq's Profile: http://www.excelforum.com/member.php...o&userid=25285
View this thread: http://www.excelforum.com/showthread...hreadid=387736

  #2   Report Post  
Dave O
 
Posts: n/a
Default

Is the Russian text formatted for Cyrillic font, or do those cells have
a unique property not shared by the English text? If yes, you could
write a quick bit of code to look in each cell for that particular
property, and if the property exists for a cell, delete its contents.

  #3   Report Post  
laheq
 
Posts: n/a
Default


Thank you for your reply. I will try that.


--
laheq
------------------------------------------------------------------------
laheq's Profile: http://www.excelforum.com/member.php...o&userid=25285
View this thread: http://www.excelforum.com/showthread...hreadid=387736

  #4   Report Post  
Dave O
 
Posts: n/a
Default

Didn't mean to be vague about the code: here's an example of code to
look in each cell, and un-shade a cell that is currently yellow:

Sub Find_Yellow()
Dim rCell As Range
For Each rCell In ActiveSheet.UsedRange
If rCell.Interior.ColorIndex = 6 Then rCell.Interior.ColorIndex = 0
Next rCell
End Sub

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
document prints shifted to the right like it is right justified. gedgoudasl Excel Discussion (Misc queries) 0 March 4th 05 08:37 PM
How to embed Word document into Excel and retain sizing, formatti. Kent Excel Discussion (Misc queries) 0 February 2nd 05 07:37 PM
Help, insert a word document contents into excel tab? Dan Ward Excel Discussion (Misc queries) 2 December 15th 04 12:01 AM
Hyperlink to a word document JS Excel Discussion (Misc queries) 1 December 10th 04 10:49 PM
Hyperlink to word document problem JS Links and Linking in Excel 0 December 8th 04 10:54 PM


All times are GMT +1. The time now is 04:44 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"