当我将超链接添加到表中时,超链接会在列中的所有行单元格中重复。
url = "https://example.com/s/" & Sheets("config").Range("B9").Value & "/users/" & ws_import.Cells(i, ExportUsers.eUser_ID).Value
' this works
ws_user.Cells(x, DisableUsers.eName).Value = ws_import.Cells(i, ExportUsers.eUser_Name).Value ' Name
' repeat hyperlink in all rows cells of the column
ws_user.Cells(x, DisableUsers.eName).Formula = "=HYPERLINK(""" & url & """, """ & ws_import.Cells(i, ExportUsers.eUser_Name).Value & """)"
没有table,它工作得很完美
有什么想法吗?
1条答案
按热度按时间nqwrtyyt1#
尝试在添加公式之前添加以下内容:
它应该阻止表格自动填充公式。
请确保在使用输入公式后启用此功能