Okay, I'm probably having a blonde moment, but when I enter
= "Total Sales: " & Sum([Sales])
it shows exactly = "Total Sales: " & Sum([Sales]) on my report.
The way I had it originally was like this
Total Sales: =Abs(sum([sales]>500))
Total Sales was the label attached to an unbound box and the expression was
the control for the text box. The report works, but I just need to get rid
of the parameter boxes so it doesn't confuse other users.
Rick B said:
Either put the literal in a separate control or use quotes...
= "Total Sales: " & Sum([SomeFieldName])
I typically do these as two controls so I can line them up separately.
--
Rick B
I did have the labels connected to unbound text boxes. I thought that was
what I needed to do if I needed to post the sum of something from the
report
by the label. For example: I have 6 entries in the column named "sales"
and
I want my group footer to have the label "total sales" and then the sum of
the sales column to the right of the label.
:
If they are labels, you will not get that. It sounds like you have
placed
these in an unbound text box and put something like...
=[Total Specs]
Just use labels, not unbound text boxes.
If you do need this in a text box, then put the words in quotes.
="Total Specs"
--
Rick B
I know I'm probably driving you guys insane. I have footer sections set
up
for a report that have label names not included in my tables. When I
open
my
report I get parameter boxes for each label name ie. Total Specs, Total
sales, etc. How do I get rid of these? Do I need to include these
labels
in
my query design?