I've created a statement in my report that pulls from multiple fields and removes unecessary spaces. Example:
=IIf(IsNull([English Speaking]),""," " & [English Speaking]) & IIf(IsNull([Spanish Speaking]),""," " & [Spanish Speaking]) & IIf(IsNull([French Speaking]),""," " & [French Speaking]) & IIf(IsNull([Creole Speaking]),""," " & [Creole Speaking]) & IIf(IsNull([Chinese Speaking]),""," " & [Chinese Speaking])
My only problem is that when the results are returned the first line is indented by one character. Example:
English Speaking, French Speaking,
Spanish Speaking, Chinese Speaking, etc...
Why is this happening? More importantly, what is a simple way to stop this from happening?
=IIf(IsNull([English Speaking]),""," " & [English Speaking]) & IIf(IsNull([Spanish Speaking]),""," " & [Spanish Speaking]) & IIf(IsNull([French Speaking]),""," " & [French Speaking]) & IIf(IsNull([Creole Speaking]),""," " & [Creole Speaking]) & IIf(IsNull([Chinese Speaking]),""," " & [Chinese Speaking])
My only problem is that when the results are returned the first line is indented by one character. Example:
English Speaking, French Speaking,
Spanish Speaking, Chinese Speaking, etc...
Why is this happening? More importantly, what is a simple way to stop this from happening?