Using a marco to update my spreadsheet.

  • Thread starter Thread starter gdbm
  • Start date Start date
G

gdbm

My problem is that i am currently manually updating my spreadsheet when
i recieve a payment from student in my class.

I am looking for a macro that i can assign to a button which will
update the payment coloum with a fixed amount.

The marco needs to find the coloum of interest, which is fixed in my
spreadsheet, find the next free cell in the coloum and input the value
(cost of a lesson) into that cell.

It would also be useful to have a similar Marco that allows me to enter
data recieved from a input box, into the next free cell in a deffind
coloum.

Hope you can help

Cheers

Glynn
 
Range("A1").End(xlDown).Offset(1,0).Value = amt

change column A and amt to suit.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Finding max value 4
Want to do a SumProduct formula 2
USE EXCEL MARCO LIKE OLD VERSION LOTUS-123 ---> {?} 3
Open File Marco 3
Updating cells using input boxes 7
Opposite of a marco 7
Marco 3
Simple Macro 2

Back
Top