This will do for one. Adapt for the other. See attached
Option Explicit

Sub FindAccountInTallySAS()
Dim i As Long
Dim mf As Range

For i = 3 To Cells(Rows.Count, 1).End(xlUp).Row
With Sheets("Tally")
Set mf = .Columns("e").Find(What:=Cells(i, "c"), LookIn:=xlValues, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext)
If Not mf Is Nothing Then
Cells(i, "k") = .Cells(mf.Row, "H") - Cells(i, "H")
Else
Cells(i, "k") = "Not in Tally"
End If
End With
Next i
End Sub

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com

From: Ashish Bhalara 
Sent: Tuesday, April 17, 2012 11:51 PM
To: excel-macros@googlegroups.com 
Subject: $$Excel-Macros$$ Require Macro for Account Reconcile between 2 
different sheet

Dear expert,


I need a macro to reconcile account. The output of result are in attached file 
by written function.

Thanks & regards.

Ashish Bhalara
9099098307




-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.
 
------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Attachment: BhalaraAccount reconcile.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12

Reply via email to