I am using a field object to get the fieldname in a For Loop processing a large table.
I need to get the value stored in that field.
I can't get the syntax for that.
I thought .Fields(intFldCtr).Name.Value would give me the value stored in that field....but no.
For intFldCtr = 1 To .Fields.Count
strCurrentField = .Fields(intFldCtr).Name
If strCurrentField = strFieldName Then
I need to get the value stored in that field.
I can't get the syntax for that.
I thought .Fields(intFldCtr).Name.Value would give me the value stored in that field....but no.
For intFldCtr = 1 To .Fields.Count
strCurrentField = .Fields(intFldCtr).Name
If strCurrentField = strFieldName Then