Spotycus
New Member
- Joined
- Dec 8, 2015
- Messages
- 25
I have seen this topic a lot recently but have not been able to apply the prior examples correctly for my scenario. I am working on a bank reconciliation tool, and need generating the table of mismatched or unreconciled values. Hopefully the following information will help explain.
I have two tables of information QBOTransactions and BankTranasactions that have share the same formatting including headers. The Unique Column ensures that there are no two transactions within the same table that identical. The letter helps to signify the type of transaction as well. The Matched column uses the following formula to compare the unique codes between the two tables to reconcile the transactions.
Based on the value in the Matched Columns I would like to copy the transactions that DO NOT have an R to new tables. QBOTransactions would be copied to QBOUncleared and BankTransactions would be copied to BankUncleared . Below is an example of the desired outcome
I know it can be difficult to obtain help when only providing pictures so I will provide the other vital information below. Although I am still progressing my knowledge of VBA, I do feel rather comfortable changing values to match my specific range or cell locations. I just do not know how to best transfer the information from one table to the other so that it is organized by the date and then highlighting the errors. If it helps with the conditional formatting, the Unique value will point out the problem area (94.75 = transaction amount -E= transaction type)
Thanks in advance for any advice or help!
I have two tables of information QBOTransactions and BankTranasactions that have share the same formatting including headers. The Unique Column ensures that there are no two transactions within the same table that identical. The letter helps to signify the type of transaction as well. The Matched column uses the following formula to compare the unique codes between the two tables to reconcile the transactions.
Code:
=IF(COUNTIF($BP$195:$BP$316,BD195)=1,"R","")
Based on the value in the Matched Columns I would like to copy the transactions that DO NOT have an R to new tables. QBOTransactions would be copied to QBOUncleared and BankTransactions would be copied to BankUncleared . Below is an example of the desired outcome
I know it can be difficult to obtain help when only providing pictures so I will provide the other vital information below. Although I am still progressing my knowledge of VBA, I do feel rather comfortable changing values to match my specific range or cell locations. I just do not know how to best transfer the information from one table to the other so that it is organized by the date and then highlighting the errors. If it helps with the conditional formatting, the Unique value will point out the problem area (94.75 = transaction amount -E= transaction type)
Code:
Sheets= Sheet1 (Bank Reconciliation)
QBOTransactions Table= ($AX$194:$BE311)
BankTransactions Table= ($BJ$194:$BQ311)
QBOUncleared Table= ($C$9:$J30)
BankUncleared Table= ($M$9:$T30)
Thanks in advance for any advice or help!