Remove Last Character from a String in Google Sheets (or Last N Characters)

When grappling with data within Google Sheets, occasionally arises the need to excise the trailing character from a string (or multiple trailing characters like 2, 3, or 5).

Achieving this feat is well within grasp by deploying elementary functions inherent to Google Sheets.

In the forthcoming guide, I shall unveil the technique of employing formulas to eliminate the ultimate character from a string within Google Sheets.

Omitting the Final Character using the LEFT Formula

Empowering the LEFT function within Google Sheets empowers you to indicate the count of characters to extract from a cell-bound string.

Suppose the labyrinthine enigma of deciphering the character count within a cell is conquered. In that case, the LEFT function can deftly seize all characters bar the terminal one.

Allow me to illuminate this technique for you.

Assuming an ensemble of data such as the one below, with aspirations of isolating the numerals sans the terminal alphabet.

The ensuing formula stands primed to undertake this challenge:

=LEFT(A2, LEN(A2)-1)

The above formula enlists the assistance of the LEN function to ascertain the comprehensive tally of characters contained within the designated cell. Subsequently, the LEFT function extracts all characters from the mentioned cell, barring the last character, by leveraging the LEN function’s outcome.

Should a hankering emerge to excise a diverse tally of characters from the conclusion (perhaps 3 or 5 characters), slight amendments suffice to morph the formula into a malleable solution.

Illustrated below is a formula primed to eradicate the last three characters from a Google Sheets string:

=LEFT(A2, LEN(A2)-3)

Post obtaining the outcome within a solitary cell, propagating the formula across all cells ensues in duplication of the result.

Once the task reaches fruition, the formulas might be metamorphosed into mere values, relinquishing the formula’s utility (this can be accomplished through Paste Special) should the demand wane.

Extracting the Concluding Character via the MID Function

An alternative stratagem to disencumber the terminal character involves the MID function.

Divergent from the LEFT function, MID enables the extraction of a specified character count from the heart of a string.

Assuming an analogous dataset to the antecedent example, where the objective is to distill the numerals sans the terminal alphabet, the ensuing formula proves effectual:

=MID(A2,1,LEN(A2)-1)

The above formula proceeds to snatch all characters from the opening till the penultimate character, facilitated by insights gleaned from the LEN function.

Casting off the Final Character through the REPLACE Function

Another remarkably uncomplicated modus operandi hinges on harnessing the REPLACE function.

By calling upon the REPLACE function, the terminal character is seamlessly substituted with an inconspicuous space (essentially achieving its obliteration).

Below manifests the formula responsible for this endeavor:

=REPLACE(A2,LEN(A2),1,””)

The above formula homing in on the terminal character undertakes its replacement with an empty entity, denoted as “”. The extent of the string’s total characters, made discernible by the LEN function, is the lynchpin in this undertaking.

Consequently, these three facile formulas furnish the capacity to sever the last character from a string ensconced within Google Sheets.

In closing, it is hoped that this Google Sheets tutorial has proven beneficial to your endeavors!

Leave a Comment