网站分隔条件名或URL文本从
提示:杰伊·舒克拉(Jay Shukla)有时候,我们遇到的情况是:
{空} 1。 Yahoo网站www.yahoo.com 2. Google网站www.google.com那么我们如何将网站名称与其余文本分开。
步骤1.
选择列。
转到“编辑”下的“替换”选项,然后替换http:
带有(空格)……………………………. http:
(例如:…. =空格)
您会发现我们的名字分开了一段距离。步骤2在“数据”下转到“文本到列”选项,然后选择“固定宽度”选项将标记移到特定位置,在整个列中第一个网站名称之前的列中,单击下一步,您将看到网站名称前的文本为黑色结束您会发现您的网站名称与文本分开。
现在使其成为超级链接:
步骤1按Alt + F11,您会发现一个宏会打开Goto Insert,然后选择Module,弹出另一个New Module窗口。Step 2复制粘贴以下提到的公式:
—————————————————— Sub MakeHyperlinks_D()
Dim cell As Range, Rng As Range Set Rng = Range(“A1:A” & Cells.Rows.Count). _ SpecialCells(xlConstants, xlTextValues)
If Rng Is Nothing Then MsgBox “nothing in range”
Exit Sub End If For Each cell In Rng If Trim(cell.Value) <> “” Then ActiveSheet.Hyperlinks.Add Anchor:=cell, _ Address:=cell.Value, _ ScreenTip:=cell.Value, _ TextToDisplay:=cell.Value End If Next cell End Sub —————————————————– and then Goto File Close and Exit Step 4 Goto Tools>Macros>Macros you will find your Websites hyperlinked.
SIMPLE AND RAW BUT EFFECTIVE.
Jay.