Home

Awesome

GUI Diff Tool for Excel

Demo

Description

ExcelMerge is a graphical display tool for Excel or CSV Diff. The current feature is limited only to the display of Diff, but the goal is to implement the merge feature. It can also be used as a diff tool for Git or Mercurial.

System Requirements

Supported file types

Installation

Download ExcelMergeSetup.msi from here and Run.

Usage

From shortcut

From exproler context menu

From command line

ExcelMerge.GUI diff [Options]
OptionDescriptionTypeDefault
-s --src-pathSource file path.string
-d --dst-pathDest file path.string
-c --external-cmdIt is used to activate other tools for unsupported file types and occured any exception.string
-i --immediately-execute-external-cmdExecute external cmd without error dialog.boolfalse
-w --wait-external-cmdWait for the external process to finish.boolfalse
-v --validate-extensionValidate extension before open file.boolfalse
-e --empty-file-nameEmpty file name.string
-k --keep-file-historyDon't add recent files.boolfalse

From Git diff tool

.gitconfig

[diff]
tool = ExcelMerge

[difftool "ExcelMerge"]
cmd = \"C:/Program Files (x86)/ExcelMerge/ExcelMerge.GUI.exe\" diff -s \"$LOCAL\" -d \"$REMOTE\" -c WinMerge -i -w -v -k 

[alias]
windiff = difftool -g -y -t ExcelMerge

From Mercurial diff tool

mercurial.ini

[merge-tools]
excelmerge.executable = C:\Program Files (x86)\ExcelMerge\ExcelMerge.GUI.exe
excelmerge.diffargs = diff -s $parent1 -d $child -c WinMerge -i -w -v -e empty -k

[tortoisehg]
vdiff = excelmerge

Register External Command

Register the external command specified by the command line argument --external-cmd.

Available Variables

ValueDescription
${SRC}Source file path
${DST}Dest file path

Can also be executed from within the tool.

File Settings

For each file you can specify a line header or a column header.

Color Settings

You can customize background colors.

Shortcut Keys

Shortcut KeyDescription
Ctrl + →Next modified cell
Ctrl + ←Previous modified cell
Ctrl + ↓Next modified row
Ctrl + ↑Previous modified row
Ctrl + KNext added row
Ctrl + IPrevious added row
Ctrl + LNext removed row
Ctrl + OPrevious removed row
Ctrl + FSearch cell
F9Next match cell
F8Previous match cell
Ctrl + CCopy selected cells as TSV
Ctrl + Shift + CCopy selected cells as CSV
Ctrl + DShow(Hide) console
Ctrl + BOutput selected cells diff as log

Output diff as log

By selecting Ctrl + D or "Output log" from the context menu, you can output the change as a log. The format can be changed from "differential extraction setting".

Known problems

If the currently displayed header is not what you expect, you may resolve it by specifying the appropriate header and extract diff. Follow these steps.

  1. Select appropriate header cell.
  2. Right click to display the context menu.
  3. Select "Extract diff with this row as header"

LICENSE

MIT Licence

Copyright (c)2017 skanmera

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.