Advertisement

07.02.2008 at 07:18AM PDT, ID: 23533623
[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.7

Modification to excel vb code

Asked by DarrenJackson in Microsoft Excel Spreadsheet Software, VB Script

Tags: , ,

Guys

I have some code which formats my data into appropiate columns the only thing is I could do with this modifying and I am not sure where to start. The code was taken from experts echange and modified to suite.

What I want to happen is the code creates rows and columns but the mod I need to happen is
where the column C contains a value of 0 then remove the column and resort the data so there are no gaps

any IdeasStart 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:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
Sub NewReport()
Dim cel As Range, rg As Range, rw1 As Range, rwEmp As Range
Dim i As Long, j As Long, k As Long, ncols As Long, nRows As Long
Application.ScreenUpdating = False
 
On Error Resume Next
Sheets("TimeSheet").Select
    Range("A3").Select
COLUMNS("G:H").Select
    Selection.EntireColumn.Hidden = False
'ActiveSheet.unprotect
    Sheets("IMPORT").Visible = True
    
Application.DisplayAlerts = False
Worksheets("IMPORT").Delete
Application.DisplayAlerts = True
On Error GoTo 0
 
Set rw1 = Rows(1)
ncols = Cells(1, 10).End(xlToLeft).COLUMN
nRows = Cells(65536, 1).End(xlUp).Row
Set rg = Range(Cells(3, 1), Cells(nRows, ncols))
ActiveWorkbook.Sheets.Add Before:=Worksheets(Worksheets.Count)
ActiveSheet.Name = "IMPORT"
'Columns(5).NumberFormat = "0.000"
 
For Each rw In rg.Rows
    For j = 7 To ncols
        k = k + 1
                
        Cells(k, 1) = rw.Cells(1, 4)
        Cells(k, 3) = rw.Cells(1, 7)
        'Cells(k, 4) = rw.Cells(1, 8)
        Cells(k, 2) = rw1.Cells(1, j)
        If rw.Cells(1, j) <> "" Then Cells(k, 3) = rw.Cells(1, j)
        If Cells(k, 3) = "" Then Cells(k, 3) = "delete"
        If Cells(k, 3) = 0 Then Cells(k, 3) = "delete"
        
        Next
    
Next
Sheets("TimeSheet").Select
    Range("A3").Select
    COLUMNS("G:H").Select
Selection.EntireColumn.Hidden = True
 
 
'ActiveWindow.SelectedSheets.Visible = False
Sheets("TimeSheet").Select
    Range("A3").Select
    'ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
 
Application.ScreenUpdating = True
 
Call ExportPRN
 
End Sub
[+][-]07.02.2008 at 08:47AM PDT, ID: 21917623

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.

 
[+][-]07.02.2008 at 09:18AM PDT, ID: 21917985

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.

 
[+][-]07.02.2008 at 09:30AM PDT, ID: 21918115

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.

 
[+][-]07.02.2008 at 09:58AM PDT, ID: 21918390

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.

 
[+][-]07.04.2008 at 03:11AM PDT, ID: 21932104

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.

 
[+][-]07.04.2008 at 04:19AM PDT, ID: 21932352

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.

 
[+][-]07.04.2008 at 05:02AM PDT, ID: 21932553

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.

 
[+][-]07.04.2008 at 05:46AM PDT, ID: 21932773

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, VB Script
Tags: Microsoft, Office 2000, 2000
Sign Up Now!
Solution Provided By: purplepomegranite
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07.04.2008 at 06:20AM PDT, ID: 21932955

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.

 
[+][-]07.04.2008 at 06:50AM PDT, ID: 21933084

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