I am afraid but that is not possible....
You can write a code to do that though
E.g. Something like....
Insert into tbl1 (FieldID, TranID, Name)
Select "F1_" & (Select mid(max(FieldID),4,4) + 1 from tbl1 where FieldID like "F1_") , TransactionID, Name from tbl2 Where TransactionID = "Tran1"
You would need data conversion etal. Though, better would be to add another field that describes F1, D1 and autonumber field kept without any formatting.