Reverse Lookup Help (beyond Summary Fields)
Any advice on how to do a "reverse lookup"? I basically am trying to pull a text field from a child table back up to the parent field. Do I need to create a second "reverse relationship" somehow?
Any advice on how to do a "reverse lookup"? I basically am trying to pull a text field from a child table back up to the parent field. Do I need to create a second "reverse relationship" somehow?

To help make your question a little more specific, lets say one particular parent record has associated with it three child records. How do you propose to take those three child records, and consolidate the three field values one parent field? Normally there is some type of summary or folding of the child information when you want to do something like this.

There are two problems you face here. As Dan asked, one is to determine which record from which child record the data will be taken, the second is that you have to transmit your data (reverse lookup) in a numeric format.
Your text must be in a format that can be converted by formula to a numeric value, then your relationship will summarize your numeric value and your master table will convert your numeric value back to text.
1) Original Text Value
2) Formula Numeric field converts Text to a numeric value
3) Summarize in relationship the Numeric Formula field (pre-determine which record to summarize)
4) Convert numeric summarized value to a text entry using a Formula Text field
If you want to reverse lookup multi-line text fields you will need another solution.
Alternatively: Use a Report Link field to display an embedded report (or link) to the child table records with the text data displayed.
Hope this helps.
Thanks for the detailed solution. i did have issue like MGerrity and was able to solve it however now i want to reverse lookup multi-line text fields, but still can't figure out that!
Lena
Reverse Phone Lookup|Phone Number Lookup|Reverse Phone Lookup|Reverse Phone Lookup
If the key field of the child record is numeric then you can pass the numeric value of the key field of the child to the parent through a summary field. Then create a new relationship where the child is now the parent and the summary field is the reference field. Now you can pass any field value from the Child(Now the parent) to the Parent (now the child).
I hope that makes sense.