如何将Microsoft Word中的单元格从“链接”更改为“文本” [英] How do I change a cell in a Microsoft Word from a Link to Text

查看:207
本文介绍了如何将Microsoft Word中的单元格从“链接”更改为“文本”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在带有"@"的单元格中有文字。并且似乎它将其解释为链接并突出显示它以及链接。

I have text in a cell with "@" and it seems as though it is interpreting that as a link and highlighting it as well as a link.

如何更改Microsoft Word单元格中单元格的格式以将其视为文本,以便它没有格式化并用作链接?

How can I change the format on a cell in a Microsoft Word cell to be treated as Text so that it is not formatted and used as a link?

感谢您的帮助,并希望得到答复。

Thanks for your help and am hopeful for a reply.

推荐答案


ITBobbyP,

您已经提到过,"我如何更改Microsoft Word单元格中单元格的格式以将其视为文本,以便它不会被格式化并用作一个链接?"

You had mentioned that,"How can I change the format on a cell in a Microsoft Word cell to be treated as Text so that it is not formatted and used as a link?"

我试着在我身边做一个测试,但我无法重现这个问题。

I try to make a test on my side but I am not able to reproduce the issue.

@符号解释为文本的文本。

The text with @ sign interpreted as text.

从您的描述中,我不确定您是否只使用Word用户界面或Word VBA。

From your description, I am not sure whether you are just using the Word User Interface or Word VBA.

如果您只是使用Word用户界面,那么您可以尝试右键单击文本并单击"删除超链接"。

If you are just using a Word User Interface then you can try to right click on the text and click on 'Remove Hyperlink'.

您也可以尝试转到文件标签 - >选项 - >打样 - >自动更正选项 - >键入时自动格式化并取消选中"带超链接的Internet和网络路径"选项

You can also try to go to File Tab -> Options -> Proofing -> Auto Correct Options -> Auto Format as You Type and uncheck the option 'Internet and Network paths with hyperlink'

如果您正在使用Word VBA并希望从word文档中表格的特定单元格的文本中删除链接,那么您可以参考下面的示例。

If you are using Word VBA and want to Remove the link from text of particular cell of table in word document then you can refer example below.

Sub demo()

    With ThisDocument.Tables(1).Cell(1, 1).Range

        While .Hyperlinks.Count > 0
        .Hyperlinks(1).Delete
        Wend
        End With

    Application.Options.AutoFormatAsYouTypeReplaceHyperlinks = False
End Sub

输出:

如果您有任何进一步的问题,请告诉我们。

If you have any further question then let us know about that.

我们将尽力为您提供解决问题的进一步建议。

We will try to provide you further suggestions to solve the issue.

问候

Deepak


这篇关于如何将Microsoft Word中的单元格从“链接”更改为“文本”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆