Skip to content

Commit

Permalink
add installation guide
Browse files Browse the repository at this point in the history
  • Loading branch information
inamesh committed Oct 13, 2020
1 parent 9d8b19f commit 33961a6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,30 @@ The primary goal of the project was to help detect the presence of Greek charact
We begin this project with a few simple functions:
1. FindFirstLatin - The first match of a group of Latin characters (words) found within the selected (assumed Greek) text.
2. FindFirstGreek - The first match of a group of Greek characters (words) found within the selected (assumed Latin) text.
3. FindFirstRegex - The first match of the supplied .NET compatible Regular Expression pattern within the slected text.
3. FindFirstRegex - The first match of the supplied .NET compatible Regular Expression pattern within the selected text.
4. FindAllLatin - Returns a comma separated list of Latin characters (words) within the selected text.
5. FindAllGreek - Returns a comma separated list of Greek characters (words) within the selected text.
6. FindAllRegex - Returns a comma separated list of all matches of the supplied .NET compatible Regular Expression pattern within the slected text.
6. FindAllRegex - Returns a comma separated list of all matches of the supplied .NET compatible Regular Expression pattern within the selected text.

## Installation
1. Download the correct version for your version of Excel from the <a href="Excel.Cell.Checker-AddIn64-packed.xll" target="_blank">releases</a> page:
* Excel 32-bit: Excel.Cell.Checker-AddIn-packed.xll
* Excel 64-bit: Excel.Cell.Checker-AddIn64-packed.xll

2. In Excel, go to File > Options and follow the steps below to install the AddIn.

Click on "Add-ins" and make sure "Excel Add-ins" is selected in the "Manage" list and click Go.
![Manage Excel Addins. Go to File > Options](images/manage-addins.png)

In the box that appears, click Browse
![Click Browse to find the xll file you downloaded in Step 1](images/browse.png)

Locate the file you downloaded in Step and and click OK.
![Select the downloaded xll file](images/select.png)

That's It! You can now use the functions in Excel

![Usage in Excel](images/demo.png)

## Note on Regular Expressions
The FindFirstRegex and FindAllRegex functions are meant to be used with <a href="https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions" target="_blank">.NET compatible regular expressions</a> including Exclusion groups! Special features of other Regex parsers will not work and might generate errors.
Binary file added images/browse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/manage-addins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/select.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 33961a6

Please sign in to comment.