VBA Issue

hkittaneh

New Member
Joined
Jan 18, 2023
Messages
1
Platform
  1. Windows
Hello experts

i have created a receipt voucher form and in order to make it a systemized for i copied a macro , & assigned it to a button. the problem is when data is being copied from the form to the master sheet, it's coming in many rows ( as per the photo) while i want every receipt voucher data to come in one row.

FYI , the macro is written below:

Sub Button2_Click()

Dim rng As Range
Dim temp As Variant
Dim i As Long
Dim a As Long
Dim rng_dest As Range

Application.ScreenUpdating = False

i = 1

Set rng_dest = Sheets("RV DATA BASE").Range("A:H")

' Find first empty row in columns A:H on sheet RV DATA BASE

Do Until WorksheetFunction.CountA(rng_dest.Rows(i)) = 0

i = i + 1

Loop

'Copy range B16:I38 on sheet Invoice to Variant array

Set rng = Sheets("FORM").Range("C:G")

' Copy rows containing values to sheet RV DATA BASE

For a = 1 To rng.Rows.Count

If WorksheetFunction.CountA(rng.Rows(a)) <> 0 Then

rng_dest.Rows(i).Value = rng.Rows(a).Value

'Copy Invoice number

Sheets("RV DATA BASE").Range("A" & i).Value = Sheets("FORM").Range("G3").Value

'Copy Date

Sheets("RV DATA BASE").Range("B" & i).Value = Sheets("FORM").Range("G6").Value

'Copy Company name

Sheets("RV DATA BASE").Range("C" & i).Value = Sheets("FORM").Range("C3").Value
Sheets("RV DATA BASE").Range("D" & i).Value = Sheets("FORM").Range("C4").Value

'Copy Amount
Sheets("RV DATA BASE").Range("E" & i).Value = Sheets("FORM").Range("C10").Value

'Copy Remarks
Sheets("RV DATA BASE").Range("F" & i).Value = Sheets("FORM").Range("C17").Value

'Copy Payment Type
Sheets("RV DATA BASE").Range("G" & i).Value = Sheets("FORM").Range("C14").Value

'Copy Bank
Sheets("RV DATA BASE").Range("H" & i).Value = Sheets("FORM").Range("F10").Value


i = i + 1


End If

Next a

Application.ScreenUpdating = True


End Sub
Sub Macro1()
'
' Macro1 Macro
'

'
Range("E19").Select
Selection.Copy
Sheets("RV DATA BASE").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub
 

Attachments

  • form.jpg
    form.jpg
    218 KB · Views: 6
  • issue-.jpg
    issue-.jpg
    145.4 KB · Views: 6

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Because you are inserting in a while loop. Just do it once:
VBA Code:
Sub Button2_Click()
  Dim lRow As Long
  With Worksheets("RV DATA BASE")
  lRow = .Cells(Rows.Count, 1).End(xlUp).Row + 1
  .Cells(lRow, 1).Value = Worksheets("FORM").Range("G3").Value
  .Cells(lRow, 2).Value = Worksheets("FORM").Range("G6").Value
  .Cells(lRow, 3).Value = Worksheets("FORM").Range("C3").Value
  .Cells(lRow, 4).Value = Worksheets("FORM").Range("C4").Value
  .Cells(lRow, 5).Value = Worksheets("FORM").Range("C10").Value
  .Cells(lRow, 6).Value = Worksheets("FORM").Range("C17").Value
  .Cells(lRow, 7).Value = Worksheets("FORM").Range("C14").Value
  .Cells(lRow, 6).Value = Worksheets("FORM").Range("F10").Value
  End With
End Sub
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,223,905
Messages
6,175,297
Members
452,633
Latest member
DougMo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top