Bit of curious one this! I've got controls being created from a main table. Problem is that there is an order of precedence on where the data comes from.ControlDeclaration = Default ValueGlobal Declaration = Overrides default valueInstance Declaration = Overrides Global and Defaulte.g.Controls---------------------------------------------Name Data---------------------------------------------Menu 1Listing 1Listing 2 1Global---------------------------------------------Name Data---------------------------------------------Menu Clone 74Listing NULLListing 2 81Single Instance---------------------------------------------Name Data---------------------------------------------Menu Clone NULLListing NULLListing 2 73
So the result I require would beRequired Results---------------------------------------------Name Data---------------------------------------------Menu Clone 74Listing 1Listing 2 73
I hope that Makes sense, hard to explain! I could do a join on the 3 tables but am guessing that would be pretty heavy and I aren't sure how I'd get the priority right!Any ideas how I could approach this problem?