Hello,<br><br>I am trying to pass parameter to a function and wants the value back as an array. Is it possible? <br><br>Here below are codes(partly). <br>Dime l_aParentField(99)<br>l_cField = "MATERIALC"<br>Stor Get_ParentField(l_cField) to l_aParentField<br><br>Function Get_ParentField(l_cField)<br>Local FieldName , FileName ,ParentFieldName(99)<br>FieldName = l_cField<br>do case<br> Case FieldName = "MATERIALC"<br> ParentFieldName(1) = "MATERIALCI" <br> ParentFieldName(2) = "MATERIALCO" <br>Endcase<br>Return(ParentFieldName)<br><br><br>Thanks<br>