A family of Microsoft relational database management systems designed for ease of use.
We need details about the report. A screenshot in design view would be helpful, for instance.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have formatted a label in each footer to reference a name for each quarter/year, but it is not translating correctly when I preview it.
For example, in the footer of the design view, I have… =“Total for “ and [saleQuarter] in hope for it to read on the report Total for Quarter 1, Quarter 2, Quarter 3, so on and so forth throughout the report for each group. Instead of referencing the quarter it is leaving the text exactly as typed.
Am I incorrectly formatting it or do I need to change settings?
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
We need details about the report. A screenshot in design view would be helpful, for instance.
Ah, you tried to concatenate the value using the English word "and". I overlooked that actually, in the original question.
In an expression, use the ampersand to concatenate.
=“Total for “ & [saleQuarter]
and
=“Total for “ & [saleYear]
etc.