Skip to main content

How to fix/convert trailing negative signs to real numbers in Excel?

For some reasons, you may need to fix trailing negative signs in cells in Excel. For example, a number with trailing negative signs would be like 90-. In this condition, how can you quickly fix the trailing negative signs by removing the trailing negative sign from right to left? Here are some quick tricks can help you.

Fix trailing negative signs in cells with formulas

Fix trailing negative signs in cells with Text to Columns function

Fix trailing negative signs in cells with VBA code

Quickly fix trailing negative signs in cells with Kutools for Execel


arrow blue right bubble Fix trailing negative signs in cells with formulas

For example, I have a range (A1:A11) which contains numbers with trailing negative signs. I can use the following formulas to fix them by removing the negative signs from left to right.

1. =IF(RIGHT(A1,1)="-",SUBSTITUTE(A1,"-","")*-1,A1)

2. =VALUE(IF(RIGHT(A1,1)="-",RIGHT(A1,1)&LEFT(A1,LEN(A1)-1),A1))

Select a blank cell adjacent to the cell that you want to change. I will click B1 and input one of the above formulas to the cell. Then tap the Enter key, and the trailing negative sign will be removed from right to left. And then drag the fill handle over the range of cells that you want to fix traling negative signs. See screenshot:

arrow blue right bubble Fix trailing negative signs in cells with Text to Columns function

Also we can use Text to Columns to fix trailing negative signs with the following steps:

1. Select the range you want to fix the trailing negative signs.

2. Go to the ribbon, click Data > Text to Columns, and a Convert Text to Columns Wizard dialog box will appear. See screenshot:

3. Click the Next button in step 1 and step 2.

4. In Step 3, click the Advanced… button and an Advanced Text Import Settings dialog box will pop out; please check Trailing minus for negative numbers option and click OK. See screenshot:

5. Click Finish. And all of the trailing negative signs will be fixed.


arrow blue right bubble Fix trailing negative signs in cells with VBA code

We can also use a VBA code to fix trailing negative signs in cells, please do as follows:

1. Highlight the range you would like to fix trailing negative signs, then Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will be displayed, click Insert > Module and then input the following VBA code:

VBA: fix all trailing negative signs in a selected range.

Sub FixNegative()
'Updateby20131113
Dim rng As Range
Dim WorkRng As Range
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
Set WorkRng = WorkRng.SpecialCells(xlCellTypeConstants, xlTextValues)
For Each rng In WorkRng
    xValue = rng.Value
    If VBA.Right(xValue, 1) = "-" Then
        rng.Value = "-" & VBA.Left(xValue, VBA.Len(xValue) - 1)
    End If
Next
End Sub

2. Click doc-fix-trailing-signs-4 button to run the code, and then a dialog is displayed for you to select a range you want to fix the trailing negative, see screenshot:

doc-fix-trailing-signs-7

3. Click Ok, then all the trailing negative valuse are fixed to normal negative values.


arrow blue right bubble Quickly fix trailing negative signs in cells with Kutools fo Excel

We can quickly fix trailing negative signs with Kutools for Excel’s Change Sign of Values.

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Get it Now

If you have installed Kutools for Excel, you can fix trailing negative signs as follows.

Step 1. Select the range you want to change positive numbers to negative numbers, and click Kutools > Content Converter > Change Sign of Values. See screenshot:

Step 2. Check Fix trailing negative signs in the popup dialog, and click Ok or Apply. See screenshot:

Kutools for Excel’s Change Sign of Values can also change all positive values to negative values, change all negative values to positive and so on. For more detailed information about Change Sign of Values, please visit Change Sign of Values feature description.


Relative articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (6)
Rated 5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Very helpful
Rated 5 out of 5
This comment was minimized by the moderator on the site
Very helpful
Rated 5 out of 5
This comment was minimized by the moderator on the site
Thank you so much. Very useful.
This comment was minimized by the moderator on the site
If the methods outlined on this webpage do not work for you, note that there are different "negative sign" characters, such as "‐" or "-" or "–" or "—" I had been generating reports from a particular source which does not use the standard "-", and this problem had plagued me for days before I mustered the determination to find out the cause. I'm sure you can imagine the feeling of satisfaction upon discovering the imposter "negative sign".
This comment was minimized by the moderator on the site
hi, can any one guide me.. if i want to put values 1-9 for only one symbol (*) IN DIFFERENT CELLS. SAME SYMBOL WITH DIFFERENT VALUES.
This comment was minimized by the moderator on the site
Hi Shirley, Here is the article. MD
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations