After talking with Todd on the phone it seems the issue is with the way he was evaluating the column. Since he was in a smart search results transformation the Eval()
method does not work. So this statement:
<%# IfEmpty(Eval("Attachment_1"), "",GetAbsoluteUrl("/getattachment/" + GetSearchValue("Attachment_1"))) %>
needed to be updated to:
<%# IfEmpty(GetSearchValue("Attachment_1"), "",GetAbsoluteUrl("/getattachment/" + GetSearchValue("Attachment_1"))) %>