I am using a trim function on a report line that will place the address number, address prefix, address street, address type, address suffix, and address extension on one line. The problem I am having is if I do not have an address number or address prefix, the line does not left justify. The line does not go clear to the left hand side. Listed below is a sample of my code.
=Trim([ADD_NO]) & " " & Trim([add_pre]) & " " & Trim([add_st]) & " " & Trim([add_type]) & " " & Trim([add_suf]) & " " & [add_ext]
Any help would be greatly appreciated.
=Trim([ADD_NO]) & " " & Trim([add_pre]) & " " & Trim([add_st]) & " " & Trim([add_type]) & " " & Trim([add_suf]) & " " & [add_ext]
Any help would be greatly appreciated.