Wa'alaikumussalam wr wb

1. bagaimana rumus hitung akumulasi. misal sel A2 (input data) sel C2
(hasil akumulasi dr sel A2)
> misal sy masukkan angka 1,2,3 bergantian di A2, maka C2 brjumlah 6
. sy masukan lagi angka 3 di sel A2, maka C2 berjumlah 9 dst.
- bgmn untuk mereset C2 agar kembali 0 (nol)

>> Excel menyediakan fasilitas iterasi.
>> Contoh :
- sebuah workbook baru -> Excel Options -> Formulas -> centang Enable
iteration -> set Max iteration dengan angka 1 (cukup lakukan 1 iterasi
untuk kasus ini) -> OK
- Cells A1 dijadikan media reset, yaitu diisi angka 1 untuk mulai kalkulasi
kumulatif inputan, angka 0 untuk mereset. Saat ini, di set 1 dulu alias A1
diisi angka 1.
- Cells B1 dijadikan media input oleh user. Jadi, user bisa mengisi nilai
numerik yang disukainya disini.
- Cells C1 dijadikan media output yang berisi hasil penambahan nilai yang
baru saja di-input user dengan nilai output (nilai cells C1) sebelum ada
inputan baru.
- Cells C1 ini diisi dengan formula berbunyi :
      =(A1=1) * ( n(B1) + C1 )
- Silakan mengisi B1 dengan suatu nilai selama cells A1 bernilai 1
- Jika ingin me-reset hasil C1, isi A1 dengan 0 dan B1 juga dengan 0.


2. Fungsi Vlookup sy punya tabel A1 = 1, B1= a A2= 2, B2 = b nilai
dicari adalah 3 disel D2. jika pake Vlookup hasil nya adl b.(krn dl
tabel tidak ada nilai 3 )
> Tp sy menginginkan nilai dicari ( 3) = 0 di sel D2. (menunjukan tidak ada
data). adakah fungsi lain yg bisa digunakan untuk kasus ini

>> Fungsi vLookUp menyediakan input parameter bernama Match_Type atau
Range_Lookup
VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
*range_lookup*  Optional. A logical value that specifies whether you want
*VLOOKUP* to find an exact match or an approximate match:

   - If *range_lookup* is either TRUE or is omitted, an exact or
   approximate match is returned. If an exact match is not found, the next
   largest value that is less than *lookup_value* is returned.

   *Important*  If *range_lookup* is either TRUE or is omitted, the values
   in the first column of *table_array* must be placed in ascending sort
   order; otherwise, *VLOOKUP* might not return the correct value.

   For more information, see Sort data <HP10073947.htm>.

   If *range_lookup* is FALSE, the values in the first column of
   *table_array* do not need to be sorted.
   - If the *range_lookup* argument is FALSE, *VLOOKUP* will find only an
   exact match. If there are two or more values in the first column of
   *table_array* that match the *lookup_value*, the first value found is
   used. If an exact match is not found, the error value #N/A is returned.



>> Sederhananya, kalau range_lookup diisi FALSE atau 0, maka proses lookup
akan mencari yang SAMA PERSIS. Kalau tidak ketemu, maka akan menghasilkan
error value #N/A!
=vLookUp( a1 , data!g7:h123 , 2 , *0* )
atau
=vLookUp( a1 , data!g7:h123 , 2 , *FALSE* )

>> Untuk mengganti nilai error value dengan suatu nilai lain dapat
menggunakan fungsi IFError (xl2007 ke atas).

*IFERROR*(*value*,*value_if_error*)

*Value*   is the argument that is checked for an error.

*Value_if_error*   is the value to return if the formula evaluates to an
error. The following error types are evaluated: #N/A, #VALUE!, #REF!,
#DIV/0!, #NUM!, #NAME?, or #NULL!.

>> Jadi, jika hasil vLookUp yang sama persis (nilai range_lookup di set 0
atau FALSE) tidak menemukannya alias menghasilkan error value, maka output
formula ingin bernilai 0
=IFError( vLookUp( a1 , data!g7:h123 , 2 , *FALSE* )  , 0 )
*** kalau vlookup nya menghasilkan error value, hasil formula diganti
dengan angka 0


Wassalamu'alaikum wr wb
Kid



2016-04-14 5:16 GMT+07:00 Univest Job univestj...@gmail.com [belajar-excel]
<belajar-excel@yahoogroups.com>:

>
>
> Assalamu'alaikum
> mau tanya master:
> 1. bagaimana rumus hitung akumulasi. misal sel A2 (input data) sel C2
> (hasil akumulasi dr sel A2)
> > misal sy masukkan angka 1,2,3 bergantian di A2, maka C2 brjumlah 6
> . sy masukan lagi angka 3 di sel A2, maka C2 berjumlah 9 dst.
> - bgmn untuk mereset C2 agar kembali 0 (nol)
>
> 2. Fungsi Vlookup sy punya tabel A1 = 1, B1= a A2= 2, B2 = b nilai
> dicari adalah 3 disel D2. jika pake Vlookup hasil nya adl b.(krn dl
> tabel tidak ada nilai 3 )
> > Tp sy menginginkan nilai dicari ( 3) = 0 di sel D2. (menunjukan tidak
> ada data). adakah fungsi lain yg bisa digunakan untuk kasus ini terimakasih
> master atas jawabannya
> salam Univest
> 
>

Kirim email ke