Skip to content

Commit 06deb36

Browse files
Update README.md
1 parent 3f5d8c8 commit 06deb36

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ This is a simple java tool to check diff between two excel files.
1010
Java 8+
1111

1212
## Usage
13-
java -jar excel-diff-checker.jar \<File1-path> \<File2-path> [r] -> where File1 and File2 are mandatory, option: 'r' is optional.
13+
java -jar excel-diff-checker.jar \<File1-path> \<File2-path> [-r] [-s \<Comma-separated sheet-names>]-> where File1 and File2 are mandatory, options: 'r' & 's' are optional.
1414

1515
## Notes to follow
1616
- This tool is not having any complex algorithm to check diff, so won't be able to detect column/row addition/deletion.
1717
- It basically considers File1 as base, and checks for diff cell-by-cell in File2, even for sheets too.
1818
- By default, it adds cell comments/note saying like 'Expected: value1, Found: value2' in a copy of File1 excel and produces it as a different result file.
19-
- Instead of above, if only remarks required about different cell diffs i.e. no separate reult file required, in that case, the option: 'r' can be used, which just prints the diff note as mentioned in above point, in the console output and not as cell comment of a new file.
19+
- Instead of above, if only remarks required about different cell diffs i.e. no separate result file required, in that case, the option: 'r' can be used, which just prints the diff note as mentioned in above point, in the console output and not as cell comment of a new file.
20+
- By using option 's', we can compare specific sheets only.

0 commit comments

Comments
 (0)