J jdriv Mar 20, 2009 #1 Can I create a field displaying part of another field using a character (-) to stop the output.
J John W. Vinson Mar 20, 2009 #2 Can I create a field displaying part of another field using a character (-) to stop the output. Click to expand... "part"? Which part? And what do you mean by "to stop the output"??? Please give an example of the data in the fields (perhaps with fieldnames) and the desired output.
Can I create a field displaying part of another field using a character (-) to stop the output. Click to expand... "part"? Which part? And what do you mean by "to stop the output"??? Please give an example of the data in the fields (perhaps with fieldnames) and the desired output.
F fredg Mar 20, 2009 #3 Can I create a field displaying part of another field using a character (-) to stop the output. Click to expand... We cannot see your database nor read your mind. A brief example saves a lot of guessing. Something like having "ASD-ZXC" and getting "ASD" and "ZXC"? =Left([FieldName],InStr([FieldName],"-")-1) and =Mid([FieldName],InStr([FieldName],"-")+1)
Can I create a field displaying part of another field using a character (-) to stop the output. Click to expand... We cannot see your database nor read your mind. A brief example saves a lot of guessing. Something like having "ASD-ZXC" and getting "ASD" and "ZXC"? =Left([FieldName],InStr([FieldName],"-")-1) and =Mid([FieldName],InStr([FieldName],"-")+1)