if (descriptionFieldName.rawValue != null){
otherFieldName.rawValue = "value you want to give it";
}
If there are multiple rows of this information you will have to add the row subform to the expression as well as an occurance number so it wil know which one you want . I will use i to indicate the occurance:
if (Row(i).descriptionFieldName.rawValue != null){
Row(i).otherFieldName.rawValue = "value you want tto give it";
}
Paul