Hi
I have a shared workbook and this formula won't automatically update;
="Welcome"&" "&PROPER(LEFT(username(),FIND(" ",username())-1))&","
So I added this to calculate on open;
Private Sub Workbook_Open()
For Each sh In ActiveWorkbook.Worksheets
sh.Calculate
Next sh
End Sub...