M
misschanda via AccessMonster.com
Hello,
I wrote in previous to get information on makin a 3 column report w/out
Fieldnames repeating. The code worked and it is listed below:
If Me.Left < (2 * 1440) Then
Me![FirstNameLabel].Visible = True
Me![LastNameLabel].Visible = True
Me![TitleLabel].Visible = True
Me![FirstName].Visible = False
Me![LastName].Visible = False
Me![Title].Visible = False
Me.NextRecord = False
Else
Me![FirstNameLabel].Visible = False
Me![LastNameLabel].Visible = False
Me![TitleLabel].Visible = False
Me![FirstName].Visible = True
Me![LastName].Visible = True
Me![Title].Visible = True
End If
My new problem:
The report I made comes from a query that has units in the internation
standard. The form that produces this information is ask of the measurements
however converts them to American units
For example Size(mm) will be converted to size(in). In the control source for
textbox for size(in) i have =size(mm)*0.0394.
when using the above code my american version of the report doesn't include
the conversion...
Can you guys help??
Thanks
LA
I wrote in previous to get information on makin a 3 column report w/out
Fieldnames repeating. The code worked and it is listed below:
If Me.Left < (2 * 1440) Then
Me![FirstNameLabel].Visible = True
Me![LastNameLabel].Visible = True
Me![TitleLabel].Visible = True
Me![FirstName].Visible = False
Me![LastName].Visible = False
Me![Title].Visible = False
Me.NextRecord = False
Else
Me![FirstNameLabel].Visible = False
Me![LastNameLabel].Visible = False
Me![TitleLabel].Visible = False
Me![FirstName].Visible = True
Me![LastName].Visible = True
Me![Title].Visible = True
End If
My new problem:
The report I made comes from a query that has units in the internation
standard. The form that produces this information is ask of the measurements
however converts them to American units
For example Size(mm) will be converted to size(in). In the control source for
textbox for size(in) i have =size(mm)*0.0394.
when using the above code my american version of the report doesn't include
the conversion...
Can you guys help??
Thanks
LA