different excel file comparisons

4 visualizaciones (últimos 30 días)
Lütfü Emre Efe
Lütfü Emre Efe el 19 de Abr. de 2021
Comentada: Lütfü Emre Efe el 19 de Abr. de 2021
Hello, I have two excel files,
First excel file as shown below
and second excel file as shown below.
I want to compare these excel files values but ı have a problem. As you seen in the first column the order of the names are not same. How can I compare these two excel file among the same names.I will print the results on the adjacent column after the comparison.

Respuestas (1)

KSSV
KSSV el 19 de Abr. de 2021
T1 = readtable(file1) ;
T2 = readtable(file2) ;
idx = ismember(T1.names, T2.names)
  1 comentario
Lütfü Emre Efe
Lütfü Emre Efe el 19 de Abr. de 2021
Thank you. I also want to compare their values by sorting the names.

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by