Hello community,
I am struggling with a task and am yet to find a simple solution to my problem. Maybe someone of you is able to help me.
So, I have header file and a csv file containing the data as input. (The data file already has the field names as header)
What I want to do is: For every column in the data a formula should check for the corresponding data type with the field name in the header file and perform a function on the entire column depending on the result.
For example: The data has a column named "Notes" where users have manually put in notes. The header file specifies that the Field "Notes" has the data type "manual input". Now I want to create a function that removes unwanted characters from all columns with the data type "manual input". In excel this would be very easy with a VLOOKUP formula like this: IF(VLOOKUP("Notes", "header table", 2, TRUE) = "manual input" , REPLACE(.....))
I hope you understand what my goal is, if you need a clearer example please let me know!
regards hasi82