Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub test()
Dim rng As Range, r As Range, sOUT As String
Set rng = Intersect(Cells(1, "D").EntireColumn, ActiveSheet.UsedRange)
For Each r In rng
With r
If .Font.Bold Then
sOUT = sOUT & .Value & " "
End If
End With
Next
sOUT = Left(sOUT, Len(sOUT) - 1)
For Each r In rng
With r
If .Font.Bold Then
With .Offset(0, -1)
.Value = sOUT
.Font.Bold = True
End With
End If
End With
Next
Set rng = Nothing
End Sub