PC Review


Reply
Thread Tools Rate Thread

Check Register

 
 
Jordon
Guest
Posts: n/a
 
      14th May 2007
Anyone using Excel for your check register?

I've tried creating one in years past but there's always something that
wouldn't work quite right. There's plenty of inexpensive commercial
programs out there but I don't need it to track a credit card account or
manage my stock portfolio or spit shine my wing tips.

TIA,

--
Jordon
 
Reply With Quote
 
 
 
 
T. Valko
Guest
Posts: n/a
 
      14th May 2007
Mine is perfect. Just a plain register. No bells and whistles!

I use drop down lists for everything: date, check number, payee, reconcile,
fee's. The only thing I have to manually enter is the amount.

Reconciling with my bank statement takes all of 2 minutes!

Biff

"Jordon" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Anyone using Excel for your check register?
>
> I've tried creating one in years past but there's always something that
> wouldn't work quite right. There's plenty of inexpensive commercial
> programs out there but I don't need it to track a credit card account or
> manage my stock portfolio or spit shine my wing tips.
>
> TIA,
>
> --
> Jordon



 
Reply With Quote
 
Jordon
Guest
Posts: n/a
 
      14th May 2007
T. Valko wrote:
> Mine is perfect. Just a plain register. No bells and whistles!
>
> I use drop down lists for everything: date, check number, payee, reconcile,
> fee's. The only thing I have to manually enter is the amount.
>
> Reconciling with my bank statement takes all of 2 minutes!


How do you handle reconciliation? Things in the bank statement won't be
in the same order as the register and there will be things in the
register amongst reconcilable items that aren't in the bank statement,
but will be next time?

--
Jordon
 
Reply With Quote
 
Don Guillett
Guest
Posts: n/a
 
      14th May 2007
ONE drop down for the recurring item

Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Target, Range("NewChecks")) Is Nothing Then
lr = Cells(Rows.Count, 1).End(xlUp).Row + 1
mydate = InputBox("Enter Date")
If mydate = "" Then
Cells(lr, 1) = Date
Else
Cells(lr, 1) = mydate
End If

'list is on sheet2
x = Sheets("sheet2").Range("newlist").Find(Target).Row
With Sheets("sheet2")
Range(Cells(lr, 2), Cells(lr, 7)).Value = _
.Range(.Cells(x, 2), .Cells(x, 7)).Value
End With

If Target = "Interest" Then
Cells(lr, "b") = "Interest"
Cells(lr, "c") = Format(InputBox("Enter Interest Rate") / 100, "0.00%")
'Cells(lr, "c").NumberFormat = "0.00%"
'Cells(lr, "d") = InputBox("Enter Interest Paid")
Cells(lr, "e") = InputBox("Enter Bank Number 1, 2, 3)
'Cells(lr, "f") = ""
Cells(lr, "g") = "x"
End If

If Target = "blank" Then
Cells(lr, 2) = InputBox("Payee")
Cells(lr, 3) = InputBox("For")
Cells(lr, 5) = 2
End If

If Len(Cells(lr, 4)) < 2 Then Cells(lr, 4) = InputBox("Amt")

Cells(lr, 8) = Cells(lr - 1, 8) + Cells(lr, 4)
End If

Range("h7").Select
Call sv 'does a running total
End Sub

--
Don Guillett
SalesAid Software
(E-Mail Removed)
"T. Valko" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Mine is perfect. Just a plain register. No bells and whistles!
>
> I use drop down lists for everything: date, check number, payee,
> reconcile, fee's. The only thing I have to manually enter is the amount.
>
> Reconciling with my bank statement takes all of 2 minutes!
>
> Biff
>
> "Jordon" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Anyone using Excel for your check register?
>>
>> I've tried creating one in years past but there's always something that
>> wouldn't work quite right. There's plenty of inexpensive commercial
>> programs out there but I don't need it to track a credit card account or
>> manage my stock portfolio or spit shine my wing tips.
>>
>> TIA,
>>
>> --
>> Jordon

>
>


 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      15th May 2007
Here's how mine is setup:

http://img180.imageshack.us/img180/842/register1ei3.jpg

Column E is for reconcilement. When I get my bank statement I place a "X" in
the cell where those items appear on the statement. I use an event macro to
enter the "X" so no typing is involved. All I do is click on the cell and
the "X" is entered.

After I've X'd all the appropriate items I click the reconcle button in the
upper right. That simply takes me to another area of the sheet:

http://img180.imageshack.us/img180/9...gister2ep7.jpg

I enter the closing balance from the statement and formulas in the cells
below let me know if my register is balanced. I then click the Register
button to return to the register area of the sheet.

No bells, no whistles, no fancy formatting! KISS! (keep it simple stupid)

Biff

"Jordon" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> T. Valko wrote:
>> Mine is perfect. Just a plain register. No bells and whistles!
>>
>> I use drop down lists for everything: date, check number, payee,
>> reconcile, fee's. The only thing I have to manually enter is the amount.
>>
>> Reconciling with my bank statement takes all of 2 minutes!

>
> How do you handle reconciliation? Things in the bank statement won't be in
> the same order as the register and there will be things in the register
> amongst reconcilable items that aren't in the bank statement, but will be
> next time?
>
> --
> Jordon



 
Reply With Quote
 
jack
Guest
Posts: n/a
 
      15th May 2007
This sounds like what I've been needing. Is it available on the web? If so,
where?


"T. Valko" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Mine is perfect. Just a plain register. No bells and whistles!
>
> I use drop down lists for everything: date, check number, payee,
> reconcile, fee's. The only thing I have to manually enter is the amount.
>
> Reconciling with my bank statement takes all of 2 minutes!
>
> Biff
>
> "Jordon" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Anyone using Excel for your check register?
>>
>> I've tried creating one in years past but there's always something that
>> wouldn't work quite right. There's plenty of inexpensive commercial
>> programs out there but I don't need it to track a credit card account or
>> manage my stock portfolio or spit shine my wing tips.
>>
>> TIA,
>>
>> --
>> Jordon

>
>



 
Reply With Quote
 
Jordon
Guest
Posts: n/a
 
      15th May 2007
T. Valko wrote:
> Here's how mine is setup:
>
> http://img180.imageshack.us/img180/842/register1ei3.jpg
>
> Column E is for reconcilement. When I get my bank statement I place a "X" in
> the cell where those items appear on the statement. I use an event macro to
> enter the "X" so no typing is involved. All I do is click on the cell and
> the "X" is entered.
>
> After I've X'd all the appropriate items I click the reconcle button in the
> upper right. That simply takes me to another area of the sheet:
>
> http://img180.imageshack.us/img180/9...gister2ep7.jpg
>
> I enter the closing balance from the statement and formulas in the cells
> below let me know if my register is balanced. I then click the Register
> button to return to the register area of the sheet.
>
> No bells, no whistles, no fancy formatting! KISS! (keep it simple stupid)


Thanks for the tips.

--
Jordon
 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      16th May 2007
You're welcome. Hope that gave you some ideas.

Biff

"Jordon" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> T. Valko wrote:
>> Here's how mine is setup:
>>
>> http://img180.imageshack.us/img180/842/register1ei3.jpg
>>
>> Column E is for reconcilement. When I get my bank statement I place a "X"
>> in the cell where those items appear on the statement. I use an event
>> macro to enter the "X" so no typing is involved. All I do is click on the
>> cell and the "X" is entered.
>>
>> After I've X'd all the appropriate items I click the reconcle button in
>> the upper right. That simply takes me to another area of the sheet:
>>
>> http://img180.imageshack.us/img180/9...gister2ep7.jpg
>>
>> I enter the closing balance from the statement and formulas in the cells
>> below let me know if my register is balanced. I then click the Register
>> button to return to the register area of the sheet.
>>
>> No bells, no whistles, no fancy formatting! KISS! (keep it simple stupid)

>
> Thanks for the tips.
>
> --
> Jordon



 
Reply With Quote
 
jack
Guest
Posts: n/a
 
      16th May 2007
Are you willing to share your check register with others?
I am interested in both the check register itself and learning more about
implementing how you use the drop down lists and especially the method of
reconciling the bank statement.
How do you use an event macro to enter the "X" so no typing is involved (by
clicking on the cell and the "X" is entered)?
I would greatly appreciate your help.
TIA,
Jack

"T. Valko" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Mine is perfect. Just a plain register. No bells and whistles!
>
> I use drop down lists for everything: date, check number, payee,
> reconcile, fee's. The only thing I have to manually enter is the amount.
>
> Reconciling with my bank statement takes all of 2 minutes!
>
> Biff
>
> "Jordon" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Anyone using Excel for your check register?
>>
>> I've tried creating one in years past but there's always something that
>> wouldn't work quite right. There's plenty of inexpensive commercial
>> programs out there but I don't need it to track a credit card account or
>> manage my stock portfolio or spit shine my wing tips.
>>
>> TIA,
>>
>> --
>> Jordon

>
>



 
Reply With Quote
 
T. Valko
Guest
Posts: n/a
 
      16th May 2007
Send me an email:

xl can help at comcast period net

Remove "can" and change the obvious.

Biff

"jack" <(E-Mail Removed)> wrote in message
news:%23zA$Ca%(E-Mail Removed)...
> Are you willing to share your check register with others?
> I am interested in both the check register itself and learning more about
> implementing how you use the drop down lists and especially the method of
> reconciling the bank statement.
> How do you use an event macro to enter the "X" so no typing is involved
> (by clicking on the cell and the "X" is entered)?
> I would greatly appreciate your help.
> TIA,
> Jack
>
> "T. Valko" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Mine is perfect. Just a plain register. No bells and whistles!
>>
>> I use drop down lists for everything: date, check number, payee,
>> reconcile, fee's. The only thing I have to manually enter is the amount.
>>
>> Reconciling with my bank statement takes all of 2 minutes!
>>
>> Biff
>>
>> "Jordon" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Anyone using Excel for your check register?
>>>
>>> I've tried creating one in years past but there's always something that
>>> wouldn't work quite right. There's plenty of inexpensive commercial
>>> programs out there but I don't need it to track a credit card account or
>>> manage my stock portfolio or spit shine my wing tips.
>>>
>>> TIA,
>>>
>>> --
>>> Jordon

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
make a check form, and then have info go to a check register richie g Microsoft Excel Worksheet Functions 0 5th May 2010 12:10 AM
Check Book Register aviscomi Microsoft Access 6 26th Dec 2008 08:30 PM
Check Register Lavert Microsoft Excel Misc 1 23rd Jul 2007 04:10 PM
check register template =?Utf-8?B?TWljaGVsZQ==?= Microsoft Excel Misc 3 19th Jan 2005 06:01 PM
Check Book Register =?Utf-8?B?cnVzdHlo?= Microsoft Excel Misc 9 31st Oct 2004 09:32 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:41 AM.