bloodycape
MIS
Ok, I got some help on this from another forum and they pointed me to , specifically the GrowBox Function. If you check this Function out you'll see that it is a simple solution for generating vertical lines, and creating a report that looks like a spread sheet.
The problem occurs with this statement:
StringBLine(StringCnt([Text],Chr(13))+(Int((Len([Text])/46)+0.5))+1)
The function StringCnt takes in two parameters, the Text field which is a string of characters and Chr(13) which is a carriage return. When there is nothing typed in the text field of the table (ie. Text equals NULL), the entire thing craps out.
I would like to try and get around the Null exception without having to write VBA code, as I have not worked with it very much.
If there's a way to handle this possiblity of Text equals Null inside the report, maybe in the command that the statement is used in, that would be ideal.
I know the vertical lines issue comes up alot, so maybe someone has seen this before.
The problem occurs with this statement:
StringBLine(StringCnt([Text],Chr(13))+(Int((Len([Text])/46)+0.5))+1)
The function StringCnt takes in two parameters, the Text field which is a string of characters and Chr(13) which is a carriage return. When there is nothing typed in the text field of the table (ie. Text equals NULL), the entire thing craps out.
I would like to try and get around the Null exception without having to write VBA code, as I have not worked with it very much.
If there's a way to handle this possiblity of Text equals Null inside the report, maybe in the command that the statement is used in, that would be ideal.
I know the vertical lines issue comes up alot, so maybe someone has seen this before.