I got it. You can update a hyperlink field data type with just a string. You need to include the # symbol!
VB Code:
Do While Not rst.EOF rst.Edit 'INCORRECT: rst![thelink] = "K:\HOME\rob\ylds\" & rst![StratumLink] & ".xls" rst![thelink] = "#K:\HOME\rob\ylds\" & rst![StratumLink] & ".xls#" rst.Update rst.MoveNext Loop
ww




Reply With Quote