I hadn’t noticed this, cause I don’t usually look at this view, but after one of our patches that I sent out to everyone in the company, it was noticed that the address wasn’t being displayed in the contacts book. So I had a look at the code and the address field name had been changed in one place, but not the other, so it was falling down. I simply changed the field reference to the proper existing field that holds the address and here is what the code should now look like on the ‘Business’ column in the ‘contacts’ view within the names.nsf file:
@Trim(
@If(CompanyName != “”;CompanyName;“”):
@If(JobTitle != “”;JobTitle;“”):
OfficeStreetAddress :
@Trim(OfficeCity + @If(OfficeCity != “” & OfficeState != “”;“, “;””) + OfficeState + " " + OfficeZip) :OfficeCountry)
Hope that helps someone. I’m sure it’s already been fixed in the newer versions, but just in case…