formula min pada excel

formula min pada excel

13.11.00 Add Comment


--

What is the use of Min formula?

Finds the minimum of a given list of numbers

Syntax of Min formula:

min(of this list of numbers)

Examples of Excel Min formula:

min(1,2,3) = 1

min(A1:A20) = minimum value in the range A1:A20




====

apa fungsi dari formula min ?
- menemukan angka minimum dari list angka yang diberikan

syntax dari formula min
- min(list angka ini)

contoh dari formula min
- min (1, 2, 3) = 1
- min (A1:A20) = minimum value pada range A1 sampai A20


formula max pada excel

formula max pada excel

18.48.00 Add Comment


What is the use of Max formula?

Finds the maximum of a given list of numbers

Syntax of Max formula:

max(of this list of numbers)

Examples of Excel Max formula:

max(1,2,3) = 3

max(A1:A20) = maximum value in the range A1:A20


====

 apa fungsi dari formula max ?
- menemukan angka maximum dari list angka yang diberikan

Syntax dari formula max
- max (list angka ini)

contoh dari formula max
- max(1, 2, 3) = 3
- max(A1:A20) = maximum value pada range A1 sampai A20




Formula large pada excel

Formula large pada excel

09.49.00 Add Comment

What is the use of Large formula?

Finds the nth largest number in a list

Syntax of Large formula:

large(from this list, nth largest number)

Examples of Excel Large formula:

large(list, 2) = 2nd largest number in the list


====

apa fungsi dari formula large ?
- menemukan nth terbesar pada list angka

syntax dari formula large
- large(list ini, n terbesar)

contoh
- large(list, 2) = menemukan angka terbesar kedua pada list yang diberikan (asumsikan terdapat angka pada list tersebut)


Formula if pada microsoft excel

Formula if pada microsoft excel

10.08.00 Add Comment


What is the use of If formula?

Fetches one of the two values based on a condition

Syntax of If formula:

if(is-this-true?, do this, or this)

Examples of Excel If formula:

if(5<10,"true","false") = true

if(5>10,"true","false") = false

====

apa fungsi dari formula if ?
- memilih salah satu dari dua pilihan berdasarkan kondisi yang diberikan

syntax dari formula if
- if(apakah ini benar ?, jika benar, jika salah)

contoh dari formula if
- if(5 < 10, "true", "false") = true
- if(5 > 10, "true", "false") = false

Formula countif pada excel

Formula countif pada excel

09.23.00 Add Comment


What is the use of Countif formula?
Counts of items in a list matching a condition

Syntax of Countif formula:
countif(in this range, values meeting this criteria)

Examples of Excel Countif formula:
countif(A1:A20, 1) = counts how many cells have "1"
countif(A1:A20, "<3") = counts how many cells have less than 3


=============


apa fungsi dari formula countif pada excel ?
- menghitung item yang ada pada list jika mempunyai kondisi yang sama

Syntax dari formula countif
- countif(range, kondisi)

contoh dari formula countif
- countif(A1:A20, 1) = menghitung berapa banyak cell yang yang mempunyai angka 1 didalamnya
- countif(A1:A20, "<3") = menghitung berapa banyak cell yang mempunyai angka kurang dari 3



Formula countblank pada excel

Formula countblank pada excel

09.58.00 Add Comment


What is the use of Countblank formula?
Counts blank cells in a given list

Syntax of Countblank formula:
countblank(in this list)

Examples of Excel Countblank formula:
countblank(list) = number of blank cells in the list


=============


apa fungsi dari formula countblank ?
- untuk menghitung cell yang kosong pada list yang telah diberikan

Syntax dari formula countblank
- countblank(list)

contoh dari formula countblank
- countblank(list) = jumlah dari cell yang kosong pada list yang telah diberikan



Formula And pada excel

Formula And pada excel

14.34.00 Add Comment



What is the use of And formula?
Checks whether all conditions are passed or not

Syntax of And formula:
and(list of conditions)

Examples of Excel And formula:
and(true, false) = false
and(true, true) = true


=============


apa fungsi dari formula And
- untuk mengecek apakah semua kondisi telah memenuhi syarat atau tidak

Syntax dari And formula
- and(list dari kondisi)

contoh dari formula And
- and (true, false) = false
- and (true, true) = true
Formula upper pada excel

Formula upper pada excel

09.45.00 Add Comment


fungsi dari Formula upper
- mengubah huruf menjadi kapital atau huruf besar

syntax formula upper
- upper (text)

contoh formula upper
- upper("hello") = HELLO
- upper ("hEllo") = HELLO
Formula value pada excel

Formula value pada excel

09.57.00 Add Comment
Apa fungsi dari Formula value
- mengkonvert text ke angka

Syntax dari Formula value
- value(dari text ini)

contoh
- value ("1.2345") = 1.2345
- value ("halo") = ERROR