Hi All,
I'm working on creating a Check and my issue is on the line where it writes out "Twenty-five dollars" or whatever the amount is. I have the written words, but I need to add the "*****" to fill up the blank space.
I'm missing the function that fills in the "****" for a select number of spaces. The total Length of the line should be 100 characters.
=English(Sum) returns the words that I need.
FoxPro had a function called PADR() which fills in the remaining with whatever character you want... but I don't see this in VBA/Access.
So I'm thinking it should look something like
=English(Sum) + PADR(LEN(English(Sum)) - 100, "*")
so what I need is a way to tell it how many "*" to enter to the right of the "Twenty-five dollars"
Thanks!
I'm working on creating a Check and my issue is on the line where it writes out "Twenty-five dollars" or whatever the amount is. I have the written words, but I need to add the "*****" to fill up the blank space.
I'm missing the function that fills in the "****" for a select number of spaces. The total Length of the line should be 100 characters.
=English(Sum) returns the words that I need.
FoxPro had a function called PADR() which fills in the remaining with whatever character you want... but I don't see this in VBA/Access.
So I'm thinking it should look something like
=English(Sum) + PADR(LEN(English(Sum)) - 100, "*")
so what I need is a way to tell it how many "*" to enter to the right of the "Twenty-five dollars"
Thanks!