Shah, I just used the job specific data node for demonstration purposes. If you replace this with your data inputs, assuming the column names are the same, the logic will work as expected. This is the expression logic used in the 'Field Profile' node: /* Pre-Expression */ hidden real field_length hidden integer cnt string char_type cnt = 1 field_length = len(`JC`) char_type = '' while cnt <= field_length begin if isnumber(mid(`JC`, cnt, 1)) char_type = char_type & ' ' & 'numeric' else char_type = char_type & ' ' & 'alpha' cnt = cnt + 1 end cnt = 1 What this expression does is loop through the entire value to determine if you have all numeric, all alpha or a mix (alphanumeric). Because your input (the JC Column) can be characters or numeric the column type is set to a character (string) field. You must look at a profile of the field's value instead of the field type based on your requirement. -shawn Message was edited by: shawn skillman
Unable to reattach the DDF.
... View more