2 Part Question

J

John Bordieri

Hi,

I'm looking to be able to type 2 lines of text in a single cell. Each time I
press "enter" my cursor goes to the next cell. Is there a way to do this.

Next. I'm trying to create a reservation book for my restaurant. I have the
form all setup the way I like it but I was wondering if there is a way to
set the date in a cell so that when I print each page will have a different
date. Sort of like a calendar.

Thank you,
John Bordieri
 
R

Roger Govier

Hi John

use Alt+Enter instead of Enter and this will insert a line feed.

With regard to dates, putting =TODAY() in a cell will insert today's
date, but this will automatically refresh it self to the next each time
the file is opened on successive days.
Typing Ctrl +; (that's Control plus semicolon) will insert today's date
into a cell, but in a fixed manner that will not refresh itself.

Entering a date into a cell e.g. enter in A1 05/09/2006 you can in
another cell on your form enter
=A1+1
and this will give 06/09/2006
 
Top