bdead20,
In my experience, when you create a chart in Access, ... if you tun on the two lables: Value and Percent, (as it appears you have), you will get a comma between the Value and the Percent, by default.
I do not see this comma in your screenshot.
So my first question is: What is the rowsource for this chart?, ...that you get the two labels on top of each other?
In any event, if your raw data basically looks something like this:
4766
2458
1801
1596
9438
7500
6686
4540
Then the only way I know how to get excactly what you have in your screenshot, (with the values and Percents formatted correctly, stacked, and with just a Line feed), is to use automation.
Here is a sample.
In contains three versions of the report.
Choose your poison.
;-)
If your data is structured differently, then perhaps thenelson's approach is more fitting.
JeffCoachman
Main Topics
Browse All Topics





by: thenelsonPosted on 2009-07-31 at 15:02:11ID: 24992805
In the textbox or query use
Format (YourValueNameHere, $0.00) & " " & Format (YourValueNameHere, "%")
or to insert a carriage return between the two:
Format (YourValueNameHere, $0.00) & vbCrLf & Format (YourValueNameHere, "%")