A family of Microsoft relational database management systems designed for ease of use.
You can use
Environ("computername")
in VBA. You can use this in your code, but you cannot use it directly in expressions in a table or query, but you can create a custom function for this purpose:
Function ComputerName() As String
ComputerName = Environ("computername")
End Function
Use like this in a query, for example:
TheName: ComputerName()