May 20, 200520 yr Hi, I have a simple problem that I hope has a simple solution. I have a Person table that includes separate fields for first and last name. It also includes a "full name" field that is calculated; it just concatenates the other two fields with an intervening space. I'd like to be able to enter Find mode and search in this calculated field, but FM always reports "No records match this set of find requests." I must be missing something important...
May 20, 200520 yr A search on a calc field like this should work. You may need to rebuild the index for that field. To do this, change the storage option for that calc to unstored, close the Database Definition dialog, then go back in and change it back to indexed.
May 20, 200520 yr You have defined the as such: Name & " " & Surname ...but have made the result of the calc' a number. Try to switch it to text??? it's likely to happen once an again, because number as type are default in the defs. --sd
May 23, 200520 yr Author Thanks guys! I knew there must have been something I was overlooking. Changing the result type to text fixed me up.
Create an account or sign in to comment