>You shouldn't have the # marks showing in the Text Box, only the date.
>The TextBox's Format should be "mm/dd/yyyy" (without the quotes, and
[quoted text clipped - 14 lines]
>> formquarterly opened the whole time this report runs, so that's not the issue.
>> thanks.
The other control's ControlSource would look like this:
=txtboxJanStart
Is that how you've got it?

Signature
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
> the problem still lies in the fact that i can't seem to call on
> txtboxJANstart at all from another control in the same report. what am i
[quoted text clipped - 20 lines]
>>>formquarterly opened the whole time this report runs, so that's not the issue.
>>>thanks.
kaosyeti@comcast.net - 24 Jan 2006 01:49 GMT
actually, what i have is
=Abs(Sum([datesold] Between [txtboxJANstart] And [txtboxJANend]))
which does work when i type
=Abs(Sum([datesold] Between #1/1/2005# And #1/31/2005#))
the year is going to change as time goes by which is why i wanted it to be
this way. otherwise i'm going to have to do a complicated series of controls
to calculate all of this.
>The other control's ControlSource would look like this:
>
[quoted text clipped - 6 lines]
>>>>formquarterly opened the whole time this report runs, so that's not the issue.
>>>>thanks.
MGFoster - 24 Jan 2006 02:24 GMT
Sometimes the TextBox isn't filled until "something" happens on the
report. You may try forcing the matter in the Report_Open event. Clear
the Control Source of the TextBoxes and in the Open event have something
like this:
Me!txtboxJanStart = Forms!FormName!ControlName

Signature
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
> actually, what i have is
>
[quoted text clipped - 21 lines]
>>>>>formquarterly opened the whole time this report runs, so that's not the issue.
>>>>>thanks.
kaosyeti@comcast.net - 24 Jan 2006 01:55 GMT
alternatively, why won't this work:
=abs(sum(datesold between # dateserial(txtboxyear, 1, 1) # and # dateserial
(txtboxyear, 1, 31) #))
or this
=abs(sum(datesold between # & dateserial(txtboxyear, 1, 1) & # and # &
dateserial(txtboxyear, 1, 31) & #))
it keeps telling me that i have an invalid date value
>The other control's ControlSource would look like this:
>
[quoted text clipped - 6 lines]
>>>>formquarterly opened the whole time this report runs, so that's not the issue.
>>>>thanks.