Hi. I’d like to write a procedure to search an excel file and find all the cells that have the word “TOTAL” in it and make the word TOTAL bold. I also need to search for the cells that have a number with an “s” next to them, like -6s, 1s, -12s and make them red. Could someone help me with this. Thanks a lot!
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
search/replace numbers and make red (excel xp, w2000)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » search/replace numbers and make red (excel xp, w2000)
- This topic has 8 replies, 3 voices, and was last updated 23 years, 4 months ago.
Viewing 1 reply threadAuthorReplies-
H. Legare Coleman
AskWoody PlusJanuary 31, 2002 at 2:46 pm #567433 -
WSjha900
AskWoody Lounger -
WSSammyB
AskWoody LoungerJanuary 31, 2002 at 5:26 pm #567458
> i need to do this for a whole workbook
Option Explicit Sub BoldTOTAL() Dim s As Worksheet Dim c As Range Const FINDTHIS = "TOTAL" Dim strFirstAddress As String For Each s In Worksheets With s.UsedRange Set c = .Find(What:=FINDTHIS, LookIn:=xlFormulas, _ LookAt:=xlWhole, MatchCase:=True) If Not c Is Nothing Then strFirstAddress = c.Address Do c.Font.Bold = True Set c = .FindNext Loop While c.Address strFirstAddress End If End With Next s End Sub Sub RedS() Dim s As Worksheet Dim c As Range For Each s In Worksheets For Each c In s.UsedRange If c.Value Like "*s" Then If IsNumeric(Left(c.Value, Len(c.Value) - 1)) Then _ c.Font.ColorIndex = 3 End If Next c Next s End Sub
-
H. Legare Coleman
AskWoody PlusJanuary 31, 2002 at 9:29 pm #567506OK, here is how to do it with conditional formatting:
1- Select the first sheet in the workbook.
2- Hold down the shift key and click on the tab for the last sheet in the workbook. This should select all of the sheets in the workbook.
3- Click on the square in the upper left corner of the first sheet to select all of the cells on the sheet (actually on all of the sheets).
4- Select Conditional Formatting from the Format menu.
5- In the first drop down box select Cell Value Is.
6- In the second drop down box select Equal To.
7- In the formula box put: =”TOTAL”
8- Click on the Format… button an select Bold for the font.
9- Click on the ADD>> button at the bottom of the dialog box to get a place to enter a second condition.
10- In the first drop down list select Formula Is.
11- In the formula box enter: =AND(RIGHT(A1,1)=”s”,(LEFT(A1,LEN(A1)-1)*1)=VALUE(LEFT(A1,LEN(A1)-1)))
12- Click on the Format… button.
13- Click on the arrow in the Color box and select Red.
14- Click on OK.
-
-
-
WSSammyB
AskWoody LoungerJanuary 31, 2002 at 4:55 pm #567453Here are a couple of macros that hopefully do what you want:
Option Explicit Sub BoldTOTAL() Dim c As Range Const FINDTHIS = "TOTAL" Dim strFirstAddress As String With ActiveSheet.UsedRange Set c = .Find(What:=FINDTHIS, LookIn:=xlFormulas, _ LookAt:=xlWhole, MatchCase:=True) If Not c Is Nothing Then strFirstAddress = c.Address Do c.Font.Bold = True Set c = .FindNext Loop While c.Address strFirstAddress End If End With End Sub Sub RedS() Dim c As Range For Each c In ActiveSheet.UsedRange If c.Value Like "*s" Then If IsNumeric(Left(c.Value, Len(c.Value) - 1)) Then _ c.Font.ColorIndex = 3 End If Next c End Sub
-
WSjha900
AskWoody LoungerFebruary 1, 2002 at 1:31 am #567551Thanks so much. This is great. Do I have to select the whole worksheet and then call the macros? Do I have to make the UsedRange like A1:c200 or does UsedRange know what is used?
Also, is there a way to move files from one folder to another within Excel? the .movefile does not seem to work. Thanks
-
WSSammyB
AskWoody LoungerFebruary 1, 2002 at 10:41 am #567596
> Do I have to select the whole worksheet
No
> does UsedRange know what is used?
Yes
> .movefile does not seem to work
Works:Option Explicit Sub Macro1() Dim fso As New FileSystemObject If fso.FileExists("c:junk.doc") Then fso.MoveFile "c:junk.doc", "c:junk" Else MsgBox "No junk" End If End Sub
Don’t forget to use Tools | References to add MS Scripting Runtime. Have a great day! –Sam
-
WSjha900
AskWoody Lounger
-
-
-
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
MS-DEFCON 3: Businesses must tread carefully
by
Susan Bradley
1 minute ago -
McLaren Health Care says data breach impacts 743,000 patients
by
Nibbled To Death By Ducks
33 minutes ago -
WhatsApp banned on House staffers’ devices
by
Alex5723
1 hour, 48 minutes ago -
Is your device eligible?
by
Susan Bradley
3 hours, 33 minutes ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
9 hours, 44 minutes ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
9 hours, 45 minutes ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
11 hours ago -
New Canon Printer Wants Data Sent
by
Win7and10
11 hours, 19 minutes ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
49 minutes ago -
AI is for everyone
by
Peter Deegan
10 hours, 52 minutes ago -
Terabyte update 2025
by
Will Fastie
4 hours, 55 minutes ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
28 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
1 day, 10 hours ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
10 minutes ago -
Plugged in 24-7
by
CWBillow
20 hours, 3 minutes ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
1 day, 23 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
1 day, 20 hours ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
3 days, 14 hours ago -
Are Macs immune?
by
Susan Bradley
5 hours, 54 minutes ago -
HP Envy and the Function keys
by
CWBillow
2 days, 22 hours ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
15 hours, 23 minutes ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
4 days, 1 hour ago -
Unable to update to version 22h2
by
04om
1 day, 10 hours ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
4 days, 9 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
4 days, 9 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
3 days, 19 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
4 days, 22 hours ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
4 days, 11 hours ago -
Is your battery draining?
by
Susan Bradley
17 hours, 2 minutes ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
1 day, 10 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.