SELAMAT DATANG DI BLOGGER SAYA http://warta-wirti.blogspot.co.id/ TERIMA KASIH TELAH BERKUNJUNG by ALEXYNET

Monday, January 22, 2018

14 Rumus Excel Di Dunia Kerja

Microsoft Excel sendiri memiliki beragam rumus yang bisa digunakan. Namun, tidak semua rumus diketahui oleh banyak orang.
Kali ini tim JalanTikus akan membagikan 14 rumus Excel di dunia kerja yang paling sering digunakan dan cara menggunakannya. Berikut ulasan lengkapnya

IF

?
Fungsi rumus Excel IF adalah mengambil salah satu dari dua nilai berdasarkan suatu kondisi.
  • Rumus IF[sourcecode]IF(logical_test,[value_if_true],[value_if_false])[/sourcecode]
  • Contoh IF[sourcecode]=IF(2<3,"Benar","Salah") > "Benar"=IF(2>3,"Benar","Salah") > "Salah"[/sourcecode]

SUM

Fungsi rumus Excel SUM adalah menjumlahkan sekumpulan angka.
  • Rumus SUM[sourcecode]Sum(number1,[number2],..][/sourcecode]
  • Contoh SUM[sourcecode]=sum(2,3,5,6,11) > 28=sum(a1,a2)[/sourcecode]

Count

Fungsi rumus Excel Count adalah menghitung jumlah cellyang berisi angka.
  • Rumus Count[sourcecode]count(value1,[value2],..][/sourcecode]
  • Contoh Count[sourcecode]=count(a1:a10) [/sourcecode]

CountA

Fungsi rumus Excel CountA adalah menghitung jumlah cell yang ada datanya.
  • Rumus CountA[sourcecode]counta(value1,[value2],..][/sourcecode]
  • Contoh CountA[sourcecode]=counta(a1:a10) [/sourcecode]

CountIF

Fungsi rumus Excel CountIF adalah menghitung jumlah cell pada suatu range yang punya satu kriteria tertentu.
  • Rumus CountIF[sourcecode]countif(range,criteria)[/sourcecode]
  • Contoh CountIF[sourcecode]=countif(a1:a10,"A")[/sourcecode]

SumIF

Fungsi rumus Excel SumIF adalah menjumlahkan suatu item di tabel yang cocok dengan kondisi tertentu.
  • Rumus SumIF[sourcecode]sumif(range,criteria,[sum_range])[/sourcecode]
  • Contoh SumIF[sourcecode]=sumif(a1:a6,"Tempe",B1:B6)[/sourcecode]

Match

Fungsi rumus Excel Match adalah menunjukkan posisi relatif suatu item di tabel yang cocok dengan kondisi atau kriteria tertentu.
Misalnya, kita ingin mencari apakah di sebuah tabel ada nama orang tertentu.
  • Rumus Match[sourcecode]match(lookup_value,lookup_array,[match_type])[/sourcecode]
  • Contoh Match[sourcecode]=match("Jojon",A1:A20,0)[/sourcecode]

VLookUp

Fungsi rumus Excel VLookUp adalah mencari suatu item di kolom, di tabel, dan mengambil nilai yang ada di kolom lain pada tabel tersebut.
Misalnya, kita ingin mencari tahu kapan ulang tahun atau jumlah anak karyawan tertentu.
  • Rumus VLookUp[sourcecode]vlokup(lookup_value,lookup_array,[match_type])[/sourcecode]
  • Contoh VLookUp[sourcecode]=vlookup("Jojon",A1:C11,3,0)[/sourcecode]

SumIfs

Fungsi rumus Excel SumIfs adalah mencari suatu item di kolom, di tabel, dan mengambil nilai yang ada di kolom lain pada tabel tersebut.
Misalnya kita ingin mencari tahu kapan ulang tahun atau jumlah anak karyawan tertentu.
  • Rumus SumIfs[sourcecode]sumifs(sum_range,criteria_range1,criteria1,criteria_range2,criteria2,...)[/sourcecode]
  • Contoh SumIfs[sourcecode]=sumifs(d1:d10,a1:a10,'Jojon",E1:E10,"Februari")[/sourcecode]

Round

Fungsi rumus Excel Round adalah membulatkan angka ke angka desimal sesuai yang kamu inginkan.
  • Rumus Round[sourcecode]round(number,num_digit)[/sourcecode]
  • Contoh Round[sourcecode]=round(12:3456789,2)[/sourcecode]

Trim

Fungsi rumus Excel Trim adalah membenarkan teks dengan cara menghapus spasi yang terlalu banyak.
  • Rumus Trim[sourcecode]trim(text)[/sourcecode]
  • Contoh Trim[sourcecode]=trim("Ini adalah rumus excel yang mudah dipelajari ")[/sourcecode]

Proper

Fungsi rumus Excel Proper adalah mengubah teks ke bentuk proper case (huruf pertama jadi huruf besar).
  • Rumus Proper[sourcecode]Proper(text)[/sourcecode]
  • Contoh Proper[sourcecode]=proper("ini aDalah rumUS eXcel yang mudah diPelajari") > Ini Adalah Rumus Excel Yang Mudah Dipelajari[/sourcecode]

Upper

Fungsi rumus Excel Upper adalah mengubah teks ke bentu upper case (huruf besar semua)
  • Rumus Upper[sourcecode]Upper(text)[/sourcecode]
  • Contoh Upper[sourcecode]=upper("ini adalah rumus excel sederhana di dunia kerja") > INI ADALAH RUMUS EXCEL SEDERHANA DI DUNIA KERJA[/sourcecode]

Lower

Fungsi rumus Excel Lower adalah untuk mengubah teks ke bentuk lower case (huruf kecil semua).
  • Rumus Lower[sourcecode]lower(text)[/sourcecode]
  • Contoh Lower[sourcecode]=lower("Jangan Lupa download aplikasi JalanTikus") > jangan lupa download aplikasi jalantikus[/sourcecode]

No comments:

Post a Comment