跳到主要內容

如何在Excel中反轉單元格中值的符號?

當我們使用excel時,工作表中既有正數也有負數。 假設我們需要將正數更改為負數,反之亦然。 當然,我們可以手動更改它們,但是如果需要更改數百個數字,則此方法不是一個好的選擇。 是否有任何快速的技巧來解決此問題?

使用選擇性粘貼功能反轉單元格中值的符號

使用Kutools for Excel快速反轉單元格中的值的符號

用VBA代碼反轉單元格中值的符號


使用選擇性粘貼功能反轉單元格中值的符號

我們可以使用 選擇性粘貼 Excel中的函數,請執行以下操作:

1。 分接頭號 -1 在空白單元格中並將其複制。

2。 選擇要反轉值符號的範圍,右鍵單擊並選擇 選擇性粘貼。 看截圖:

3.選擇性粘貼 對話框,單擊 全部 來自的選項 選項 手術。 看截圖:

4。 然後點擊 OK,並且該範圍內數字的所有符號均已反轉。

5。 根據需要刪除數字-1。


一次反轉所有數字的符號

Excel的Kutools改變價值觀 實用程序可以幫助您將正數更改為負數,反之亦然,還可以幫助您反轉值的正負號並將尾隨的負號修復為正常值。  點擊下載Kutools for Excel!

Excel的Kutools:具有300多個方便的Excel加載項,可以在30天內免費試用,沒有任何限制。 立即下載並免費試用!


使用Kutools for Excel快速反轉單元格中的值的符號

我們可以使用 改變價值觀 的特點 Excel的Kutools.

Excel的Kutools : 帶有300多個便捷的Excel加載項,可以在30天內免費試用

安裝後 Excel的Kutools,請執行以下操作:

1. 選擇要反轉數字符號的範圍。

2。 點擊 庫工具 > 內容 > 改變價值觀…,請參見屏幕截圖:

3。 在 改變價值觀 對話框,檢查 反轉所有值的符號,請參見屏幕截圖:

doc值反向符號5

4。 然後點擊 OK or 登記。 數字的所有符號均已反轉。

保養竅門:

用VBA代碼反轉單元格中值的符號

同樣,我們可以使用VBA代碼來反轉單元格中值的符號。 但是我們必須知道如何讓VBA來做這件事。 我們可以按照以下步驟進行操作:

1. 選擇要反轉單元格中值的符號的範圍。

2。 點擊 開發者 > Visual Basic中 在Excel中, 適用於應用程序的Microsoft Visual Basic 將顯示窗口,或使用快捷鍵(Alt + F11)激活它。 然後點擊 插入 > 模塊,然後復制並粘貼以下VBA代碼:

Sub Convert()
Dim C As Range
For Each C In Selection
C.Value = -C.Value
Next C
End Sub

3. 然後點擊 文檔反向符號 6 按鈕運行代碼。 所選範圍內的數字符號立即被反轉。


使用Kutools for Excel反轉單元格中值的符號


Excel的Kutools:超過 300 個方便的工具觸手可及! 立即開始 30 天免費試用,沒有任何功能限制。 現在就下載!
Comments (15)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Tried to do the developer option and I get a:
Run-time error '438':
Object doesn't support this property or method


Any ideas?
This comment was minimized by the moderator on the site
I have a mac version of excel and the paste special doesn't allow me to do that :-/ dying.
This comment was minimized by the moderator on the site
Yes. Yes it does. Enter "-1" in a cell. Copy that cell. Highlight all the values whose sign you wish to flip. Opt-Cmd-V opens paste special dialog box, choose multiply from the Operations section (I also find it beneficial to choose "values" in the Paste Section rather than "all" to preserve any formatting).
This comment was minimized by the moderator on the site
Thx Bro for the useful thread
This comment was minimized by the moderator on the site
Thank you so much, Sir. You helped me a lot. I hope I can return the favor. Thank you so much.
This comment was minimized by the moderator on the site
thank you i had just posted in the SUN system with the srong month. this has helped me to reverse all the 195 entries within 7 minutes...
This comment was minimized by the moderator on the site
From my perspective it seems there is no foolproof way to simply remove a negative sign: Multiplying by -1 can screw up subsequent cell values if each one is using a formula. VBA requires saving in a different format. Kutools requires you to download/purchase an add-on. You can format a column to show negatives as positives, but it turns the font Red.
This comment was minimized by the moderator on the site
I'm looking to add multiple $ to cells with formulas example (=((I29+AM29+AV29+BH29+CG29+CP29+DS29+AJ78+BA91+BU91+CO91+DK78)-(V25+EF25+EN25))/4 Is there away to do this quickly...
This comment was minimized by the moderator on the site
This is tangentially related. I have a workbook in Excel 2013 that's baffling me. I get a #VALUE! error with the formula =SUM(8-(F4:F23)) in cell F2. When I reverse that, =SUM(F4:F23)-8), I get (#) where (#) is the negative of what I expect. But when I use #Jonathon's formula with my working formula in it, I again get the #VALUE! error. How is this #VALUE! error even possible? What I want is for F2 to be a positive number that's the leftover balance when F4:F24 is less that 8.
This comment was minimized by the moderator on the site
Michaelq please use abs function. It turns negative and positive values both to positive one.
This comment was minimized by the moderator on the site
Very cool trick. I imported transactions from BofA and AMEX and of course they use different signs for debits. One multiply paste later and I'm all fixed up. Thanks.
This comment was minimized by the moderator on the site
In a New Cell simply Multiply a the Cell-value by -1. It will reverse automatically. No need to perform such a long procedures. e.g if the value in B1 is -25 then in Cell C1 enter the formula : =B1 * -1 :-)
This comment was minimized by the moderator on the site
OMG THANK YOU SOOO MUCH. I have been looking all over the place for a way to simply do this. I was trying to find a way to have Excel take the SUM of a group of numbers and make it negative so that it would automatically do all the rest of the math on the sheet correctly. If anyone else is looking to do something similar, using the information I just obtained from #JAVED KHAN, enter the following function (this is just an example, change the cell references to match the ranges you are needing to use) =SUM(B2:H2) * -1 This will now take the sum of the range and automatically change the value to a negative number.
This comment was minimized by the moderator on the site
You sir have just blown my mind with your Excel Ninja ways, I tip my hat to you sir :lol:
This comment was minimized by the moderator on the site
The goal was to change an entire range of cells easily, not just a single cell. The paste multiply method is basically a one step procedure to do just that.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations