S
Sean Stuber
I have three questions:
1. How would I search every sheet for a value, and if that value exists,
delete that sheet. then continue checking other sheets.
For Each Sh In Worksheets
If Range("OrderStatus").Cells(1, 1).Value = 2 Then
ActiveSheet.Delete
End If
Next
2. How do you hide the column/row ABC 123 headings using VBA?
3. Is there a trick to getting user specified text to write into a
merged cell? My code is below but doesn't work ie. no words show up in
the merged cell.
Range("C15
18").Select
ActiveCell.FormulaR1C1 = InputBox(prompt:="Enter Additional Comments")
Thanks a lot. You guys rock.
1. How would I search every sheet for a value, and if that value exists,
delete that sheet. then continue checking other sheets.
For Each Sh In Worksheets
If Range("OrderStatus").Cells(1, 1).Value = 2 Then
ActiveSheet.Delete
End If
Next
2. How do you hide the column/row ABC 123 headings using VBA?
3. Is there a trick to getting user specified text to write into a
merged cell? My code is below but doesn't work ie. no words show up in
the merged cell.
Range("C15
18").SelectActiveCell.FormulaR1C1 = InputBox(prompt:="Enter Additional Comments")
Thanks a lot. You guys rock.