Direkt zum Inhalt

Wie kann man Vorzeichen von Werten in Zellen in Excel umkehren?

Wenn wir Excel verwenden, enthält ein Arbeitsblatt sowohl positive als auch negative Zahlen. Angenommen, wir müssen die positiven Zahlen in negative und umgekehrt ändern. Natürlich können wir sie manuell ändern, aber wenn Hunderte von Zahlen geändert werden müssen, ist diese Methode keine gute Wahl. Gibt es schnelle Tricks, um dieses Problem zu lösen?

Kehren Sie das Vorzeichen von Werten in Zellen mit der Funktion "Inhalte einfügen" um

Kehren Sie das Vorzeichen von Werten in Zellen mit Kutools for Excel schnell um

Kehren Sie das Vorzeichen von Werten in Zellen mit VBA-Code um


Kehren Sie das Vorzeichen von Werten in Zellen mit der Funktion "Inhalte einfügen" um

Wir können das Vorzeichen von Werten in Zellen mit dem umkehren Einfügen Funktion in Excel, bitte gehen Sie wie folgt vor:

1. Tippen Sie auf Nummer -1 in eine leere Zelle und kopieren Sie es.

2. Wählen Sie den Bereich aus, in dem Sie das Vorzeichen der Werte umkehren möchten, klicken Sie mit der rechten Maustaste und wählen Sie Einfügen. Siehe Screenshot:

3. Im Einfügen Dialogfeld, klicken Sie auf Alle Optionen von Pasta und Multiplizieren Option von Produktion. Siehe Screenshot:

4. Dann klick OKund alle Vorzeichen der Zahlen im Bereich wurden umgekehrt.

5. Löschen Sie die Nummer -1 nach Bedarf.


Kehren Sie das Vorzeichen aller Zahlen gleichzeitig um

Kutools for Excel Vorzeichen der Werte ändern Das Dienstprogramm kann Ihnen helfen, die positiven Zahlen in negative und umgekehrt zu ändern. Es kann Ihnen auch helfen, das Vorzeichen der Werte umzukehren und das nachfolgende negative Vorzeichen auf normal zu setzen.  Klicken Sie hier, um Kutools für Excel herunterzuladen!

Kutools for Excel: Mit mehr als 300 praktischen Excel-Add-Ins können Sie es innerhalb von 30 Tagen ohne Einschränkung testen. Jetzt herunterladen und kostenlos testen!


Kehren Sie das Vorzeichen von Werten in Zellen mit Kutools for Excel schnell um

Mit können wir das Vorzeichen von Werten schnell umkehren Vorzeichen der Werte ändern Merkmal von Kutools for Excel.

Kutools for Excel : Mit mehr als 300 praktischen Excel-Add-Ins können Sie diese innerhalb von 30 Tagen ohne Einschränkung testen

Nach der Installation Kutools for ExcelBitte gehen Sie wie folgt vor:

1. Wählen Sie den Bereich aus, in dem Sie die Vorzeichen der Zahlen umkehren möchten.

2. Klicken Sie Kutoolen > Inhalt > Vorzeichen der Werte ändern…, Siehe Screenshot:

3. In dem Vorzeichen der Werte ändern Wählen Sie im Dialogfeld Kehren Sie das Vorzeichen aller Werte um, siehe Screenshot:

doc-reverse-Zeichen von Werten5

4. Und dann klick OK or Jetzt bewerben. Alle Vorzeichen der Zahlen wurden umgekehrt.

Tips:

Kehren Sie das Vorzeichen von Werten in Zellen mit VBA-Code um

Wir können auch einen VBA-Code verwenden, um das Vorzeichen von Werten in Zellen umzukehren. Aber wir müssen wissen, wie wir den VBA dazu bringen können, die Sache zu tun. Wir können dies wie folgt tun:

1. Wählen Sie den Bereich aus, in dem Sie das Vorzeichen von Werten in Zellen umkehren möchten.

2. Klicken Sie Entwickler:in / Unternehmen > Visual Basic in Excel eine neue Microsoft Visual Basic für Anwendungen Das Fenster wird angezeigt oder mit den Tastenkombinationen (Alt + F11) um es zu aktivieren. Dann klick Insert > ModulKopieren Sie anschließend den folgenden VBA-Code und fügen Sie ihn ein:

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

3. Dann klick doc-umgekehrtes-zeichen-6 Schaltfläche, um den Code auszuführen. Und das Vorzeichen der Zahlen im ausgewählten Bereich wurde sofort umgekehrt.


Kehren Sie das Vorzeichen von Werten in Zellen mit Kutools for Excel um


Kutools for Excel: Über 300 praktische Werkzeuge immer zur Hand! Starten Sie noch heute Ihre 30-tägige kostenlose Testversion ohne Funktionseinschränkungen. Jetzt herunterladen!
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