rept function in access??

  • Thread starter Thread starter mmohon
  • Start date Start date
M

mmohon

I use the Rept function to do little "In Cell" bar graphs in Excel. Is
there a similar function in Access, so I can dress up my reports a
little bit?

just to clarify
=rept("@",5) results in "@@@@@"
I wanna do a
=rept("g",[Total Cases]) use Webdings font, and lower case g returns a
solid block which makes a nice little bar graph.
 
I use the Rept function to do little "In Cell" bar graphs in Excel. Is
there a similar function in Access, so I can dress up my reports a
little bit?

just to clarify
=rept("@",5) results in "@@@@@"
I wanna do a
=rept("g",[Total Cases]) use Webdings font, and lower case g returns a
solid block which makes a nice little bar graph.

In Access, use

String( 5, "@")

HTH
Matthias Kläy
 
I use the Rept function to do little "In Cell" bar graphs in Excel.
Is there a similar function in Access, so I can dress up my reports a
little bit?

just to clarify
=rept("@",5) results in "@@@@@"
I wanna do a
=rept("g",[Total Cases]) use Webdings font, and lower case g returns
a solid block which makes a nice little bar graph.

So the Excel Rept function repeats a character? The VBA String()
function does that, but with the arguments reversed:

=String(5, "@")
=String([Total Cases], "g")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top