This works for me as well, thank you. Although, I am stuck with the Report Header only printing on the first page...but, I can live with that so long as the...
To make your report header appear on every page, move it to the Page Header (then it would appear on every page) or to the top of the Venue header, then ...
Hi Dave, I'm not an Access expert by any means, but I think the problem you're having isn't Access based at all. I burn a lot of stuff to CD and the files are...
Isnull will not work, because the [field] is similar to the InputBox function, it will return an empty string "" if you just hit Enter since its 'Style' or All...
Also available ( I use and recommend both): Access Analalyser from FMS http://www.fmsinc.com Speed Ferret from Black Moshannon Systems http://www.moshannon.com...
Hi, I'm working on a db. It contains audio/video equipment information and I have to do an automatic calendar that shows, each day, which equipment needs tech...
Dear all, I want to learn the skill of developing an Access program with licence and security protection. Is it possible for Access program to have such...
Start by browsing the Online-Help in Access and create a module then browse the VBA Online Help. Access for Dummies is a good starting book. ... much...
William, Yes it is. Start by reading the Access Security FAQ which you can find on the M$ Knowledge Base site. Regards, Beth M ... From: william_cheuung To:...
Hi All: I have a Form and a subform. The form has a field named "SUBTTL". The subform has records with a field named "TTLITEM" The Form name is "frmslips" the...
The web site you gave leads me to a Realtor's Website, and I don't see the option called "Find and Replace". Please advice. Thansk Minh ... report, ... it ......
What you want is www.rickworld.com Ed Tesiny EdTesiny at oasas.state.ny.us ... From: tuyetmai_vu05 [mailto:tuyetmai_vu05@...] Sent: Tuesday, March 02,...
I have an odd question.. I want to sort text in a memo field that has been formatted with HTML. is there a way of displaying the formatted text in a form as it...
Group, I have a form that has two email fields: reported_by_email and assigned_to_email. I need to have both of these fields in the "To" box for SendObject....
Try ([assigned_to_email]"& ; &"[reported_by_email]) BR Ramst ... From: Isaiah Vi [mailto:ivi@...] Sent: 03 Maret 2004 10:51 To:...
ramst
ramst@...
Mar 3, 2004 5:53 am
13335
Have an extensive phone list that is to be updated regularly. Is there a way to have access: 1) automatically populate the Alpha Field with just the first ...
To retrieve the left character, you would use Left([EmpName].[Last],1) To display your numeric values, you would need to write a routine, (or a lot of Iif...
I get an error for: Left([EmpName].[Last],1): Could not find 'EmpName].[Last'. though the table is named EmpName the field is named Last. I even tried adding...
Andy, Regarding the first issue, are you using a query for this? If you create a query based on table EmpName, then in the grid, you would only enter: ...
Ha! I was putting that expression in the default value of the EmpAlpha Table rather than in the query field -- works now. Yes, I'd like to see how to write a...
After going back and rereading your post, a couple of questions come to mind. First, why do you want to populate a field with the first character of what is...
Can someone tell me the best way to test for a Null condition. I have a field on a form that I want to check to see if there is any data there. If there...
Very close, you need to test the field this way If isNull(Me.HoursWorkedPast) Then
MsgBox "Null Value"
End If Tom Hamilton
Department of Human Assistance...
There are many syntaxs for this, but this is the preferred (and most efficient) method: If len(Me.HoursWorkedPast & vbnullstring) = 0 Then MsgBox "Null...