So I have been trying to run the code with the first combobox simply set at listing the actual table names however still cannot seem to get the ListObject name to be variable on a value defined by the first combobox selection:
Private Sub CbxCity_Change()
    Dim t As Integer
    Dim i As Range

    Me.CbxAsset.Clear
    t = Me.CbxCity.ListIndex + 1
    
    For Each i In Worksheets("DB").ListObjects("City" & t).ListColumns("Asset").DataBodyRange
        If i.Value <> "" Then
          Me.CbxAsset.AddItem i.Value
        End If
    Next i
End Sub
Similarly, the following version will not work:
Private Sub CbxCity_Change()
    Dim table As String
    Dim i As Range

    Me.CbxAsset.Clear
    table = Me.CbxCity.Value
    
    For Each i In Worksheets("DB").ListObjects(table).ListColumns("Asset").DataBodyRange
        If i.Value <> "" Then
          Me.CbxAsset.AddItem i.Value
        End If
    Next i
End Sub
Any suggestions? I have seen a sample workbook from a colleague who successfully used the first method of concatenating the name and combobox ListIndex reference number- however it was used for naming the ListColumn and not ListObject. For some reason it does not work the other way around..