答案 0 :(得分:0)
使用以下子。我测试了它并找到了工作。
Sub fBold()
Dim UsedCell, MyRange, srcIdentifier
UsedCell = Sheets("Sheet1").Cells(1, 1).SpecialCells(xlLastCell).Row
Set MyRange = Range("A1:A" & UsedCell)
For Each intCell In MyRange
If Not InStr(1, intCell.Value, ".") > 0 Then
intCell.Offset(0, 1).Font.Bold = True
End If
Next
End Sub