I have an age column where the value is coming in years plus ‘yr’ included with it. For example 50 yr or 52 yr or 60 yr. I only need to extract people from that list that are between 50 and 52 years old. Can someone help me create a formula where it looks at only the numbers within the column and then compares if they are within the age of 50 and 52.
Try this and see if it generates the expected result:
Use an assign activity, left side = datable variable named in this case “filteredData” and on the right side the rest of the Linq expression.
Replace “dtAge” with your datatable variable. “Age” is the name of the column I guess.
Also this would only work as long as the format is as described above.