0
I have 4 columns in excel: A,B,C,D right? Only that I need to order to make a comparison because all the information is disorganized I explain myself:
Original Archive in . CSV (Disorganized Information )
A(Inglês) B (Tradução) C(Inglês) D (Trad.)
"xxx.yyy.Hello" "Oi" "xxx.yyy.Text" Texto
"xxx.yyy.Green" "Verde" "xxx.yyy.Hello" Hello
How I’d like it to stay that way:
A(Inglês) B (Tradução) C(Inglês) D (Trad.)
"xxx.yyy.Hello" "Oi" "xxx.yyy.Hello" "Hello"
"xxx.yyy.Green" "Verde" "xxx.yyy.Text" "Texto"
In short the values of fields A and C, to make it easier to compare translations.
Note: The file contains approx 4000 lines in each row (A,B,C,D). There is a way to perform this type of sorting in excel, plugin, etc... Thanks in advance!!!
Wouldn’t it be better to structure the file with only 2 columns ? English and translation ? Or 3 columns if you want two translations
– Isac
I happen to have 2 files. csv understand? Dae I’ll try to put them the way I told you. File 1 would have columns A and B , File 2 columns C and D
– Rodrigo Hackz Exploitz
But you’re trying to put the two files together in one ? Joining the entries that exist in the two ?
– Isac
But how will I do that if the words are all scrambled? doing it manually would take hours.... Remember that there are almost 4000 lines
– Rodrigo Hackz Exploitz
And why not the tool to remove duplicates? That would already give to put all followed in the same spreadsheet and remove duplicates
– Isac
I explain : fields A and C are computer codes, only I wanted to do more didactically here, but here we go: Field A Field C xxx.yyy.Green xxx.yyy.Green @danieltakeshi
– Rodrigo Hackz Exploitz
@Rodrigohackzexploitz Do you have any experience in Excel VBA? Or this should be done only with formulas and standard tools?
– danieltakeshi
I am not a programmer..... I have always acted in support..... my notions of programming are very basic and many years ago I do not compile anything..... rsrsrss
– Rodrigo Hackz Exploitz
I suggest putting the example of the original sheets and what you intend to do, the ultimate goal. This seems to me a XY problem
– Isac
@Isac , I don’t know if it will make a difference anymore I edited exactly how the original fields are. These are codes for a file . json I passed to. csv and later passed in excel. Note: columns ( A and B ) belong to archive1.csv columns ( C and D ) belong to archive2.csv understand?
– Rodrigo Hackz Exploitz
@Rodrigohackzexploitz Do you know if there are duplicates of the same word in each csv file? If there is, I can only think of VBA to solve the problem.
– danieltakeshi
there are of course..... because my idea is to compare the translated fields and those that are not yet translated. @danieltakeshi
– Rodrigo Hackz Exploitz
And how do you know which ones are yet to be translated ?
– Isac
By checking fields B and D, I will know if they have been translated or not.
– Rodrigo Hackz Exploitz