I am trying to insert a formula into a range of cells in my worksheet using the below VBA (this converts a total days number from column T and displays it as weeks and days in Column U)

Displaying "90"in T as "12Weeks 6Days" in U


Sub Procedure6() 'Fills Column R with O3+42'
Range("U3:U" & Cells(Rows.Count, "A").End(xlUp).Row).Formula = "=INT((T3)/7)&"Weeks "&MOD(T3,7)&"Days""
End Sub
Unfortunately it is raising a 'Compile Error: Expected: end of statement' error when it reaches the "Weeks" section of the code.

MY VBA knowledge is limited, any input on how to get this working would be great.