excel vba - Matching and Sorting Two Columns for Bank Reconciliation -


hi need preparation of bank reconciliation report. say, have 2 sheets, 1 sheet contain id code current month , other sheet contain id code previous month. this:

col. (sheet 1) | col b (sheet 2)

                 |         d  b                 |         c  c                 |         e  d                 |         b  e                 |          f 

i want macro automatically sort , match 2 columns ending this:

col. (sheet 1) | col b (sheet 2)

                 |          b                 |         b  c                 |         c  d                 |         d  e                 |         e 

take note f in column (sheet 1) deleted because has no match in col. b. please me this, new when comes excel vba.

you can without macro, cleaner. use countif() function determine matches 1 column other, delete rows if countif() zero, can use vlookup() , you're there.

hope helps.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -