I am trying to create a workflow which has an input file(xls) in which it contains many rows of data but fixed 3 columns
FilePath, TableName, Required
Filepath :- is actually an excel file path which is actually a report with many rows and columns
Table Name: SQL Table Name
Required: Boolean value 1 or 0
What I wants to accomplish is to loop through the file list and extract the report file name in each row and feed that filename to a dynamic input tool and then output the content into an SQL table(If not exists create that table). The SQL table name is the second column value.
Also required column is something tells to process that row or not...
Please suggest a good way.. I am stucked.😥