Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bgarcia94550

    How to test, copy, move, and paste cell value

    I'm new to VBA coding so please educate me. I'm looking to do the following: Read a range of cells If the active cell is > 1 Copy the cell Move to another cell: offset(-3,-2) Paste the value Else Read the next record I started playing around and got the following code but...
  2. bgarcia94550

    Copy range cells to another sheet and keep format

    I tried the new code, but still the same result. And yes I want to copy the entire row. Here's the new code in place: For Row = 1 To Boxsize If Rows(Row).Hidden = False Then Rownum = Rownum + 1 'Rows(Row).Select 'Selection.Copy Rows(Row).EntireRow.Copy...
  3. bgarcia94550

    Copy range cells to another sheet and keep format

    The column widths and row heights do not come over. Any other suggestions?
  4. bgarcia94550

    Copy range cells to another sheet and keep format

    I have the following code to copy a row that is not hidden , then pasted to another sheet in the same workbook. The problem I have is that the formatting is all gone in the destination sheet. Here's my code: Sub CopyLine2() Dim Boxsize As Integer Dim Row As Integer Dim Rownum As Integer...

Part and Inventory Search

Back
Top