top of page

Note that when a vendor hosting Relativity on secure servers rather than in the cloud, ugrades to Relativity Server 2023, several new features will be available.


Users will no longer have the option to toggle back to the classic interface, and will have to use the Aero UI discussed in the tip of the night for January 24, 2021.


Coding decisions can be implemented for multiple documents in the results for Find Similar Documents in the Viewer. In this function, Relativity searches the full content of the current document in the viewer as the basis for a concept search. You can update multiple fields using a mass operation:



This mass coding operation also works for family documents, documents which are part of the same email thread, near duplicates, and other relational groups.


With the Relativity Server 2023 upgrade, it will also be possible to filter and sort on the view similar document results, as well as the concept search results.


You should also see improvements in email threading with Relativity 2023. It can account for instances in which there are small alterations in a signature used for a message, and thread those messages together.


When using integration points to transfer data from one workspace to another, it is possible to transfer both document object data and non-document object data in the same workflow. So you can move documents, fields, and OCR sets all at the same time.


The OCR function has also been improved, and PDFs of Japanese documents will contain fewer errors.

 
 

It's possible to run proximity searches in Excel using the below Visual Basic code. It will highlight any cells in which two given terms appear within a number of words that you set. Simply copy the vba code into a new module in the project list:



. . . the macro will run and prompt you to enter the cell in which the search should begin, and then prompt you to enter the first term, the second term, and the highest number of words which should appear between these terms.



This macro will only search for the terms in the order in which you enter them. It will find when the second term is within X number of words after the first term, but not vice versa.



Thanks to will266 for posting this code here.


Sub proximitySearch()

Dim startCell: startCell = InputBox("Enter Starting cell for search; i.e. B2", "Starting Cell")

Dim termOne: termOne = InputBox("Enter first search term", "Search Term 1")

Dim termTwo: termTwo = InputBox("Enter second search term", "Search Term 2")

Dim proximity: proximity = InputBox("Enter maximum distance between terms", "Proximity Value")


Dim rng As Range, r As Range

Set rng = Range(startCell, Range("a" & Rows.Count).End(xlUp))

rng.Interior.ColorIndex = xlNone

With CreateObject("VBScript.RegExp")

.IgnoreCase = True

.Pattern = termOne + "\S*(\s\S+){0," + proximity + "} " + termTwo

For Each r In rng

If .test(r.Value) Then r.Interior.Color = vbRed

Next

End With

End Sub

Relativity's latest innovation is aiR for Review, which uses artificial intelligence to not only help find responsive documents, but also to describe why the document is relevant and cite to the parts of the document that make it relevant.


aiR is accessed in the Relativity mass operations menu.



. . . the litigation team enters a case summary using the same type of language you might use in a memorandum to describe the key players and key terms for a matter. A simple 2 to 5 sentence overview of the case should be provided:



The criteria to define exactly what should be regarded as relevant can be given as a description that you would send to another member of your team, rather than a series of keywords or sample documents.



When an individual document is viewed, the user can check a short summary of why it was found to be relevant, associated with the parts of the document that support this finding:



The process still requires a subject matter expert to not only devise the criteria used by aiR, but also to verify the initial results. A team of reviewers has to validate the findings generated by aiR on a statistical sample of the full document set.


When using aiR, Relativity recommends providing information clearly, but also as briefly as possible. The active voice should be used (so, "Mr. Johnson embezzled the bank's funds.", and not, "The bank's funds were embezzled by Mr. Johnson.") and double negatives should not be used. (Don't say, "Johnson can't hardly wait until the deal becomes final."). It is also necessary to avoid the qualifier, "including but not limited to".


Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

​

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

​

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page