As Of Now Nothing Applied But Need Code For Formatting The FieldNames To AutoFit The Column By Cell Data Of The Resultant Exported Query.
Using The Below Code To Export The Query :-
Private Sub Export_Click()
Dim Response As String
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel12Xml, HasFieldNames:=True, tablename:="query", FileName:="Files Not Recieved - " & Format(Now, "dd-mm-yyyy") & ".xlsx"
Response = MsgBox("Your File Has Been Saved To Your Current Directory (Usually Files Not Recieved - dd-mm-yyyy.xlsx).", vbOKOnly, "File Saved")
End Sub