Sorry about multiple questions.Still new to jsl and in process of getting used to.
I have 2 columns in a data table - process and location. process has values like welding,melting,binding and preparing.Location has values like 29,15,6,22.
I need to write this data to an excel as welding@29,melting@15,binding@6,preparing@22.
My approach -
1.Combine columns process and location with delimiter @.
2.Get list of unique values using Associative array and get keys.
But the problem I am facing is -
There are instances where one or both columns can be blank.
If process is blank,the result is NA@23.If both columns are blank result is '.'.
How do I check the list for these values and remove them?
Thanks