Advertisement

07.22.2008 at 09:55AM PDT, ID: 23585749
[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!

9.0

Using an Inputbox to Control Workbooks using Excel/VBA

Asked by piyushdabomb in Office & Productivity Software, Microsoft Excel Spreadsheet Software

Tags: , ,

Currently, with the function below, user clicks a button in Sheets(2) and within the same workbook, user selects a cell or a range of cells and those cells are shaded based upon a format. Okay, fine so this works. How can I run this accross multiple workbooks though?

Lets say I have a 'control' workbook. I click the 'Run Macro' button, and the following sequence occurs:

> User selects workbook (easy step)
> Workbook opens and user selects a range in the workbook
> Shades all the cells in the region
> Save the workbook and closes
> Prompts the user to select another workbook
> Workbook opens and user selects a range.... (and keep looping till user doesn't want to select a WB).

Here is the code I used to shade cells:

Public Sub Color_Range()

Dim cell_count As Integer
Dim mycell As Range

Set mycell = Application.InputBox(prompt:="Select a cell or table to shade. If you select just 1" _
                                           & "cell, this macro will determine the table to shade", Type:=8)

cell_count = 0
For Each cell In mycell
    cell_count = cell_count + 1
Next

If cell_count = 1 Then
    Set_Range_States mycell, last_row, last_column, table_range
    Shade_Cells table_range
Else
    Shade_Cells mycell
End If
End Sub

Note: Shade_Cells and Set_Range_States are custom built.Start Free Trial
[+][-]07.22.2008 at 05:02PM PDT, ID: 22064830

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: Office & Productivity Software, Microsoft Excel Spreadsheet Software
Tags: Microsoft, Excel, 2002
Sign Up Now!
Solution Provided By: rheitzman
Participating Experts: 1
Solution Grade: B
 
 
[+][-]07.22.2008 at 05:07PM PDT, ID: 22064868

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.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628