usit86 Posted April 21, 2005 Share Posted April 21, 2005 Is it possible to have an auto entered serial increment based on the value of another field? That is IF FIELD_A = "INVOICE" ; INCREMENT SERIAL_A IF FIELD_A = "PRO-FORMA" ; INCREMENT SERIAL_B. Hope this is clear. Thank you Link to comment Share on other sites More sharing options...
aaa Posted April 21, 2005 Share Posted April 21, 2005 You can make your field auto enter calculating value. Create two global fields Gl_Field1="INVOICE" Gl_Field2="PRO-FORMA". Create relations from this fields to Field_A.Sort your related records by Record_Id.Then your calculation will be such as: Case(FIELD_A="INVOICE",RELATION1::SERIAL_A+?????,RELATION2::SERIAL_B+???) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.