VBA Macro. Add increment of 1. Transfer data from Sheet 1 to Sheet 2

rcahayag1925

New Member
Joined
Sep 24, 2018
Messages
18
Office Version
  1. 2013
Platform
  1. Windows
Hi Everyone,

I have this data in Sheet1 - RECEIPT

(1) NAME of payor, to be encoded every time clients pays for the service
(2) DATE and TIME
(3) AMOUNT
(4) Receipt Number - should add an increment of 1, upon printing of receipt
example, A pays 950, Receipt Number 501. upon printing receipt the number should be changed to 502

This data should be recorded in Sheet2, every after transactions

DATE/TIME RECEIPT NO. NAME AMOUNT

23 Sep 2018 9:50am 501 A 950
23 Sep 2018 9:55am 502 B 1200
23 Sep 2018 9:59am 503 C 950


Thank you


Rey
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
How do you determine a transaction? Would it be once Name, & Amount are entered? (I assume Date/Time is automatic?)
 
Last edited:
Upvote 0
the name and amount are then entered to the sheet1, for the issuance of the receipt. date/time is automatic
 
Upvote 0
I may be missing the point but try this on a copy of your data:

Add this code to your "Receipt" code module. (I'm assuming you know how to do this)

I've commented as much as I can so you can see what each line is doing so you should be able to amend to suit your needs.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)


'This sub assumes Name = Col "A" Date/Time = "B" Amount = "C" & Receipt No = "D"
    
Dim nr As Long ' - Next available row on Sheet 2
Dim wsRecord As Worksheet 'worksheet to write record to.
Dim sRecord As String 'Record to write to wsRecord


    'Has user changed Name or Amount?
    If Target.Column = 1 Or Target.Column = 3 Then
        
        'Are both Name & Amount filled?
        If Cells(Target.Row, "A") <> "" And Cells(Target.Row, "C") <> "" Then
            
            'disable events from triggering
            Application.EnableEvents = False
            
            'if date time is empty, fill it.
            If Cells(Target.Row, "B") = "" Then Cells(Target.Row, "B") = Format(Now, "dd/mm/yyyy hh:mm")
            
             'if Receipt is empty, fill it
            If Cells(Target.Row, "D") = "" Then
                Cells(Target.Row, "D") = Application.WorksheetFunction.Max(Columns("D")) + 1
            End If
            
            'set the record to write
            sRecord = Cells(Target.Row, "B") & " " 'Date/Time
            sRecord = sRecord & Cells(Target.Row, "D") & " " 'Receipt No.
            sRecord = sRecord & Cells(Target.Row, "A") & " " 'Name
            sRecord = sRecord & Cells(Target.Row, "C") ' Receipt No.
            
            
            'get next row on Sheet2
            Set wsRecord = Sheets("Sheet2") 'Change sheet name accordingly.
            
            'Next available row to write to
            nr = wsRecord.Range("A" & Rows.Count).End(xlUp).Row + 1
        
            'Write the record
            wsRecord.Range("A" & nr) = sRecord
                
            'reenable events
            Application.EnableEvents = True
            
        End If
    
    End If
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,709
Members
449,093
Latest member
Mnur

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