Hello,
Let's say I have a csv file done that way :
"Gerald";"Meunier";"2"
"Mitch";"Farris";"3"
"Erik";"Rapp";"2"
Before importing this set of data into a table, I want VBA to map my third field :
mapping matrix
---------------
"1" -> "young"
"2" -> "quite old"
"3" -> "very old"
What then would be imported in my table is then :
"Gerald";"Meunier";"quite old"
"Mitch";"Farris";"very old"
"Erik";"Rapp";"quite old"
Has anyone any idea how to do this?
Many thanks!
Gerald
Let's say I have a csv file done that way :
"Gerald";"Meunier";"2"
"Mitch";"Farris";"3"
"Erik";"Rapp";"2"
Before importing this set of data into a table, I want VBA to map my third field :
mapping matrix
---------------
"1" -> "young"
"2" -> "quite old"
"3" -> "very old"
What then would be imported in my table is then :
"Gerald";"Meunier";"quite old"
"Mitch";"Farris";"very old"
"Erik";"Rapp";"quite old"
Has anyone any idea how to do this?
Many thanks!
Gerald