I go crazy so far...
I have an excel file with columns like below:
Value 1 | Value 2 | Addition 1 | Value 3 | Value 4 | Addition 2
The first two columns (Value 1, Value 2) are just values, the third column (Addition 1) is the addition of column 1 and column 2. The same goes for the columns number four and five (Value 3, Value 4), they are just values and the sixth column (Addition 2) is the addition of column four and five.
Now I have a CSV file that looks like that:
1;2;;4;5;
My goal now is to import the data from that CSV file to the excel sheet without overriding columns three and six. How is that possible?
I tried it like that: I open the CSV file in an editor and copy the content of it and paste it in the first column. Then I go to the register data and then click on "Text to columns", in that dialog i select the semikolon as a separator and then finish. But it overrides the values respectively my formula for the addition even tough there is no value in that column in the csv file.
What am I doing wrong?