A family of Microsoft relational database management systems designed for ease of use.
In which row in the table should the value at the Updates column position be >10? Or are the Updates values in every row in the table the same? If the latter then the table should be decomposed, with the Updates value being in a single row in a referenced table. This removes the risk of update anomalies.
Either way you will probably need to call the DLookup function to get the value. Do this in an If….End If construct, in which the export to Excel is conditional on the return value of the function being >10.
To export a table to Excel in VBA the TransferSpreadsheet method of the DoCmd object is used.