Advertisement
Advertisement
| 07.30.2008 at 10:02AM PDT, ID: 23608138 |
|
[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: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: |
'Format ID as General
Columns("C:C").Select
Selection.NumberFormat = "General"
'Format conversion as number no decimals
Columns("H:H").Select
Selection.NumberFormat = "#,##0"
'Format standard cost and standard cost each as number five decimals
Range("F:F,I:I").Select
Selection.NumberFormat = "#,##0.00000"
'Set font to nine pitch
Cells.Select
With Selection.Font
.Name = "Tahoma"
.Size = 9
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 1
End With
'Set length of item description field to fifty
Cells.Select
Selection.Columns.AutoFit
Columns("B:B").Select
Selection.ColumnWidth = 50
With Selection
.HorizontalAlignment = xlGeneral
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
'Set row to autofit, vertical alignment on bottom
Cells.Select
Selection.Rows.AutoFit
With Selection
.HorizontalAlignment = xlGeneral
.VerticalAlignment = xlBottom
.WrapText = True
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
'Rename tab sheet1 to Items
Sheets("Sheet1").Select
Sheets("Sheet1").Name = "Items"
'Define Name ItemList
ActiveWorkbook.Names.Add Name:="ItemList", RefersToR1C1:="=OFFSET(Items!R2C1,0,0,COUNTA(Items!C1)-1)"
'Define Name ItemLookup
rowsa = Sheets("Items").Cells(Rows.Count, 1).End(xlUp).Row
ActiveWorkbook.Names.Add Name:="ItemLookup", RefersToR1C1:="=Items!R2C1: R" & rowsa & "C9" & Chr(32)
'Go to first cell on worksheet
Range("A1").Select
'Add New Worksheet
Sheets.Add
'Hide Items worksheet
Sheets("Items").Select
ActiveWindow.SelectedSheets.Visible = False
'Protect sheet1
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, Password:="xxxxx"
ActiveSheet.EnableSelection = xlUnlockedCells
'Protect workbook
ActiveWorkbook.Protect Structure:=True, Windows:=False, Password:="xxxxx"
'Save with same name as opened
ActiveWorkbook.Save
'Close active workbook
ActiveWorkbook.Close
|