Z zezo2021 Member Local time Today, 08:11 Joined Mar 25, 2021 Messages 412 Jul 4, 2021 #1 hello friends this code is used with a query to create a bar chart in the query the problem is with big number need column to be wider how can I fix this problem Code: TheGraph: String(CInt([Population]),ChrW(9600))
hello friends this code is used with a query to create a bar chart in the query the problem is with big number need column to be wider how can I fix this problem Code: TheGraph: String(CInt([Population]),ChrW(9600))
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 14:11 Joined May 7, 2009 Messages 20,331 Jul 5, 2021 #2 use "percentage" of the Area to fill? say you have a reference there, a Label control for example, with Y height. to put a percentage of your [population] against Y height: TheGragph: String(Y * [population] / [total population], ChrW$(9600))
use "percentage" of the Area to fill? say you have a reference there, a Label control for example, with Y height. to put a percentage of your [population] against Y height: TheGragph: String(Y * [population] / [total population], ChrW$(9600))
Z zezo2021 Member Local time Today, 08:11 Joined Mar 25, 2021 Messages 412 Jul 5, 2021 #3 arnelgp said: use "percentage" of the Area to fill? say you have a reference there, a Label control for example, with Y height. to put a percentage of your [population] against Y height: TheGragph: String(Y * [population] / [total population], ChrW$(9600)) Click to expand... Not understand (Y)
arnelgp said: use "percentage" of the Area to fill? say you have a reference there, a Label control for example, with Y height. to put a percentage of your [population] against Y height: TheGragph: String(Y * [population] / [total population], ChrW$(9600)) Click to expand... Not understand (Y)
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 14:11 Joined May 7, 2009 Messages 20,331 Jul 5, 2021 #4 look at this demo. see the formula of the graph textbox. it needs 20 ChrW$(9600) character to fully "fill" the graph. Attachments sampleGraph.accdb sampleGraph.accdb 424 KB · Views: 137
look at this demo. see the formula of the graph textbox. it needs 20 ChrW$(9600) character to fully "fill" the graph.
Z zezo2021 Member Local time Today, 08:11 Joined Mar 25, 2021 Messages 412 Jul 5, 2021 #5 arnelgp said: look at this demo. see the formula of the graph textbox. it needs 20 ChrW$(9600) character to fully "fill" the graph. Click to expand... GOOD EXAMPLE BUT SHOULD I GUESS THE NUMBER 20
arnelgp said: look at this demo. see the formula of the graph textbox. it needs 20 ChrW$(9600) character to fully "fill" the graph. Click to expand... GOOD EXAMPLE BUT SHOULD I GUESS THE NUMBER 20
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 14:11 Joined May 7, 2009 Messages 20,331 Jul 6, 2021 #6 zezo2021 said: BUT SHOULD I GUESS THE NUMBER 20 Click to expand... You designed the report, therefore you should know how much char will the "graph" be filled.
zezo2021 said: BUT SHOULD I GUESS THE NUMBER 20 Click to expand... You designed the report, therefore you should know how much char will the "graph" be filled.