Advertisement
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.
Your Input Matters 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! |
||
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
|