Loncat ke daftar isi utama

Bagaimana cara membalikkan tanda nilai dalam sel di Excel?

Penulis: Dukungan Teknis Terakhir Dimodifikasi: 2024-01-05

Saat kami menggunakan excel, ada angka positif dan negatif di lembar kerja. Misalkan kita perlu mengubah angka positif menjadi negatif dan sebaliknya. Tentu kita bisa mengubahnya secara manual, tapi jika ada ratusan nomor yang perlu diubah, cara ini bukan pilihan yang baik. Apakah ada trik cepat untuk mengatasi masalah ini?

Membalikkan tanda nilai dalam sel dengan fungsi Tempel Spesial

Balikkan tanda nilai dalam sel dengan Kutools for Excel dengan cepat

Balikkan tanda nilai dalam sel dengan kode VBA


Membalikkan tanda nilai dalam sel dengan fungsi Tempel Spesial

Kita bisa membalikkan tanda nilai dalam sel dengan sisipkan Khusus fungsi di Excel, lakukan hal berikut:

1. Ketuk nomor -1 di sel kosong dan salin.

2. Pilih rentang yang Anda ingin membalikkan tanda nilainya, klik kanan dan pilih sisipkan Khusus. Lihat tangkapan layar:

3. Dalam majalah sisipkan Khusus kotak dialog, klik Semua opsi dari pasta dan Mengalikan opsi dari Operasi. Lihat tangkapan layar:

4. Lalu klik OK, dan semua tanda angka dalam kisaran tersebut telah dibalik.

5. Hapus angka -1 sesuai kebutuhan.


Balikkan tanda semua angka sekaligus

Kutools untuk Excel'S Ubah Tanda Nilai utilitas dapat membantu Anda mengubah bilangan positif menjadi negatif dan sebaliknya, ini juga dapat membantu Anda membalikkan tanda nilai dan memperbaiki tanda negatif yang tertinggal menjadi normal.  Klik untuk mengunduh Kutools for Excel!

Kutools untuk Excel: dengan lebih dari 300 add-in Excel yang praktis, gratis untuk dicoba tanpa batasan dalam 30 hari. Unduh dan uji coba gratis Sekarang!


Balikkan tanda nilai dalam sel dengan Kutools for Excel dengan cepat

Kita dapat membalikkan tanda nilai dengan cepat Ubah Tanda Nilai fitur dari Kutools untuk Excel.

Kutools untuk Excel : dengan lebih dari 300 add-in Excel yang praktis, gratis untuk dicoba tanpa batasan dalam 30 hari

Setelah menginstal Kutools untuk Excel, lakukan hal berikut:

1. Pilih rentang yang Anda ingin membalikkan tanda-tanda angka.

2. Klik Kutools > Konten > Ubah Tanda Nilai…, Lihat tangkapan layar:

3. di Ubah Tanda Nilai kotak dialog, periksa Balikkan tanda semua nilai, lihat tangkapan layar:

doc-reverse-tanda-nilai-nilai5

4. Dan kemudian klik OK or Mendaftar. Semua tanda angka telah dibalik.

Tips:

Balikkan tanda nilai dalam sel dengan kode VBA

Juga, kita dapat menggunakan kode VBA untuk membalikkan tanda nilai dalam sel. Tapi kita harus tahu bagaimana membuat VBA melakukan hal itu. Kami dapat melakukannya sebagai langkah-langkah berikut:

1. Pilih rentang yang Anda inginkan untuk membalikkan tanda nilai dalam sel.

2. Klik Pengembang > Visual Basic di Excel, file Microsoft Visual Basic untuk aplikasi jendela akan ditampilkan, atau menggunakan tombol pintas (Alt + F11) untuk mengaktifkannya. Lalu klik Menyisipkan > Modul, lalu salin dan tempel kode VBA berikut ini:

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

3. Kemudian klik doc-balik-tanda-6 tombol untuk menjalankan kode. Dan tanda angka dalam rentang yang dipilih telah dibalik sekaligus.


Balikkan tanda nilai dalam sel dengan Kutools for Excel


Kutools untuk Excel: Lebih dari 300 alat praktis di ujung jari Anda! Mulai uji coba gratis 30 hari Anda tanpa batasan fitur hari ini. Download Sekarang!
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