If you will do this from an Access application session, you can use DLookup()to get the value FieldGroupIDthat matches your value FieldID.
DLookup("FieldGroupID", "[Fields]", "FieldID ='ALPHAA'")
DLookup()will give you Null if FieldIDnot found. You can use the function Nz()to replace the desired value for Null.
Nz(DLookup("FieldGroupID", "[Fields]", "FieldID ='ALPHAA'"), "AA")
source
share