I am trying to resolve an issue
Create a sequence that does the following:
Reads a file called ‘Members Only.csv’(read CSV) and stores the data in a data table (Build Data Table). Filters the data table based on whether the person is a club member (Filter Data Table). Creates a nickname for each club member using the first 3 letters of the first name, all in uppercase, and the first 3 letters of the last name, all in lowercase (for each row in filter table assign nickname=FName.Substring(0,3).ToUpper & LName.Substring(0,3).ToLower). Writes all the generated nicknames to the Output Panel (write line).
I have written the code but it’s not giving any error or expected output. Basically it’s not giving any output or error. Can you please suggest what am I missing here.
Thanks
Pallvi