C
Caroline
I need to creat a function that will count the number of
blank fields between entries in a table. I could have a
record with all fields filled in the next record the Name
Field is blank, the next line the name field is blank,
then the next line the name field is filled.
I need to create a function that counts the number of
lines that are blank for the Name field something like:
counter = 0
Iif ([fldName] is null,
counter=counter+1,counter=counter+0)
then I needit to loop so it counts the 2 blank fields
listed in the example above. I am having a problem
defining the public function for use in this report. Any
guidence would be helpful.
Caroline
blank fields between entries in a table. I could have a
record with all fields filled in the next record the Name
Field is blank, the next line the name field is blank,
then the next line the name field is filled.
I need to create a function that counts the number of
lines that are blank for the Name field something like:
counter = 0
Iif ([fldName] is null,
counter=counter+1,counter=counter+0)
then I needit to loop so it counts the 2 blank fields
listed in the example above. I am having a problem
defining the public function for use in this report. Any
guidence would be helpful.
Caroline