just an idea but you could try using
rst.Fields("[Field]").value
instead of
rst![Field]
or it could be
rst.Fields("Field").value
not cirtain if you need the [] or not.
Another idea if you want to remove "/"'s from your field names use sql like this
sql = "Select [C/F] as CF, EELoan, Profit, NetProfit, Tax from test"
now the [C/F] field is just CF.
rst.Fields("[Field]").value
instead of
rst![Field]
or it could be
rst.Fields("Field").value
not cirtain if you need the [] or not.
Another idea if you want to remove "/"'s from your field names use sql like this
sql = "Select [C/F] as CF, EELoan, Profit, NetProfit, Tax from test"
now the [C/F] field is just CF.
