Advertisement

08.28.2008 at 09:29AM PDT, ID: 23686164
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.5

Excel  highlight row is item in one cell is matched on around 100 xls files followup

Asked by neoptoent in Microsoft Excel Spreadsheet Software, Programming Languages, Visual Basic Programming

Got this create code from RQuadling to do exaclty what I want..

the only prob is when I add a 4th condition  I get:
I get an Run time error '1004'
Application-defined or object defined error  for this line
.FormatConditions.Add Type:=xlExpression, Formula1:="=IF(ISERROR(FIND(""\DOMAIN ADMINS"", UPPER($B1))),FALSE,TRUE)"


I attached the code belowStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
Sub SetHighlights()
'
' Macro recorded 2008/08/26 by Richard Quadling
'
 
'
    Sheets("List of XLS Files").Range("A1").Select
    Range(Selection, Selection.End(xlDown)).Select
    For Each c_Cell In Selection
       Workbooks.Open Filename:="C:\scans\" & c_Cell.Value
        For Each sh_Sheet In Sheets
            With sh_Sheet.Cells
                .FormatConditions.Delete
                .FormatConditions.Add Type:=xlExpression, Formula1:="=IF(ISERROR(FIND(""AUTHENTICATED USERS"", UPPER($B1))),FALSE,TRUE)"
                .FormatConditions(1).Font.ColorIndex = 2
                .FormatConditions(1).Interior.ColorIndex = 3
                .FormatConditions.Add Type:=xlExpression, Formula1:="=IF(ISERROR(FIND(""\USERS"",UPPER($B1))),FALSE,TRUE)"
                .FormatConditions(2).Font.ColorIndex = 2
                .FormatConditions(2).Interior.ColorIndex = 5
                .FormatConditions.Add Type:=xlExpression, Formula1:="=IF(ISERROR(FIND(""EVERYONE"",UPPER($B1))),FALSE,TRUE)"
                .FormatConditions(3).Font.ColorIndex = 1
                .FormatConditions(3).Interior.ColorIndex = 44
                .FormatConditions.Add Type:=xlExpression, Formula1:="=IF(ISERROR(FIND(""\DOMAIN ADMINS"", UPPER($B1))),FALSE,TRUE)"
                .FormatConditions(4).Font.ColorIndex = 1
                .FormatConditions(4).Interior.ColorIndex = 39
            End With
            Range("A1").Select
        Next sh_Sheet
        Application.DisplayAlerts = False
        With ActiveWorkbook
              .SaveAs Filename:="C:\scans\" & Left(c_Cell.Value, Len(c_Cell.Value) - 4) & ".xls", FileFormat:=xlNormal
            .Close SaveChanges:=True
        End With
        Application.DisplayAlerts = True
    Next c_Cell
    Sheets("List of XLS Files").Range("A1").Select
End Sub
 
Loading Advertisement...
 
[+][-]08.28.2008 at 10:59AM PDT, ID: 22337755

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 11:39AM PDT, ID: 22338271

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 01:00PM PDT, ID: 22339174

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 01:40PM PDT, ID: 22339633

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 02:30PM PDT, ID: 22340112

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.29.2008 at 01:58AM PDT, ID: 22343496

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.29.2008 at 05:57AM PDT, ID: 22344855

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.29.2008 at 09:47AM PDT, ID: 22347197

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.29.2008 at 02:40PM PDT, ID: 22349488

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.31.2008 at 06:23PM PDT, ID: 22357009

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 05:31AM PDT, ID: 22359595

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Microsoft Excel Spreadsheet Software, Programming Languages, Visual Basic Programming
Sign Up Now!
Solution Provided By: RQuadling
Participating Experts: 2
Solution Grade: A
 
 
[+][-]09.01.2008 at 01:04PM PDT, ID: 22362460

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 01:06PM PDT, ID: 22362467

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 01:40PM PDT, ID: 22362648

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 01:43PM PDT, ID: 22362664

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 04:51PM PDT, ID: 22363382

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.02.2008 at 02:07AM PDT, ID: 22365320

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.02.2008 at 06:05AM PDT, ID: 22366843

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.02.2008 at 07:05AM PDT, ID: 22367394

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_Related_20080208