Kamis, 30 Juni 2011

]] XL-mania [[ Digest Number 2194

Messages In This Digest (11 Messages)

Messages

1.

Menyembunyikan sheet

Posted by: "Eko Setia @Banjarbaru" eko.setia@yahoo.co.id   eko.setia

Wed Jun 29, 2011 6:13 pm (PDT)



Dear Pakar Excel,

Saya membuat data yg terdiri dari beberapa sheet. Kemudian saya buat sheet induk yg punya hyperlink ke sheet-sheet data.
Pertanyaannya adalah, bagaimana cara menyembunyikan sheet-sheet data, sehingga hyperlink-nya tetap jalan.
Karena ketika saya hidden dengan cara biasa, hyperlink-nya gak jalan.

Terima kasih sebelumnya,
Eko

Powered by Telkomsel BlackBerry®
2a.

Update data dari client ke server dan sebaliknya

Posted by: "Budiyanto" byt.yanto@yahoo.co.id   byt.yanto

Wed Jun 29, 2011 6:16 pm (PDT)



Dear XL Mania,

Mohon solusinya bagaimana membuat update data dari master file dan ke
user file .

Begini gambarannya ; saya punya file master yang tersimpan di dalam
komputer server dan yang satu di komputer user,
bagaimana caranya apabila file master saya update datanya dan data file
yang di clent ikut update juga,begitu pula
apabila file user di update file master saya juga terupdate.

File terlampir.

Terima kasih.

Budiyanto

3.

Menampilkan Berapa Lama Waktu ( Month, Year )

Posted by: "dhony" Dhony.arisiansyah@valdo-intl.com

Wed Jun 29, 2011 6:16 pm (PDT)



Dear Teman Xl,

Sudah Lama nech saya tidak bersua.. Hehehehehehe. Ilmu yang saya terima
sangat berguna sekali buat pekerjaan saya... Terima Kasih yach teman
XL_mania.

Teman2x aku lagi punya masalah nech, di pekerjaan saya adalah menghitung
masa lama waktu, contohnya seperti ini :

SI A bekerja selama 6 Bulan dengan Waktu Mulai Bekerja adalah 12 - Januari -
2011, sehingga Masa Kontraknya Abis pada Waktu 12 - July - 2011. Pertanyaan
Saya

Bagaimana Mengaktivkan format masa waktu kontrak yang abis dengan data
validation... data terlampir

Tolong Yach Teman2x...

Regards,

Dhony

4a.

Re: Record macro Sederhana

Posted by: "hendrik karnadi" hendrikkarnadi@yahoo.com   hendrikkarnadi

Wed Jun 29, 2011 6:16 pm (PDT)



Saya agak bingung mengenai beberapa kata yang ada dalam pertanyaan:
- Record Macro sederhana --> saya tidak dapat menemukan macronya
- Untuk menghapus beberapa kolom, padahal yang ingin dihapus (berdasarkan contoh) adalah kolom (kosong) dan baris.
 
Macro yang dibuat dengan cara direkam atau ditulis langsung digunakan untuk melakukan tindakan tertentu secara otomatis pada range (kolom atau baris) tertentu, dengan menggunakan nama range atau alamat sel.
 
Jika nama range (baris atau kolom) belum dapat ditentukan maka akan sulit untuk membuat macronya.
 
Jika yang anda inginkan adalah mengambil data tertentu untuk lokasi yang telah ditentukan maka anda dapat menggunakan fungsi index, match atau vlookup.
 
 
Salam,
Hendrik Karnadi

--- On Sun, 26/6/11, $martin <p0443dv@gmail.com> wrote:

From: $martin <p0443dv@gmail.com>
Subject: ]] XL-mania [[ Record macro Sederhana
To: XL-mania@yahoogroups.com
Date: Sunday, 26 June, 2011, 6:10 PM

 

Dear Pakar Excel,
 
Saya memiliki problem record macro sederhana, yaitu menghapus beberapa kolom.
Namun karena jumlah baris yang saya gunakan berubah-ubah sering ada data yang tidak ikut ter-convert.
 
Mohon bantuan dari pakar excel sekalian atas bantuannya terima kasih

4b.

Re: Record macro Sederhana

Posted by: "STDEV(i)" setiyowati.devi@gmail.com   siti_vi

Wed Jun 29, 2011 6:17 pm (PDT)



*Tunjek poin saja...*
*
*
*(1)*
Cara (1) ini tidak dengan menghapus KOLOM / BARIS yg kosong; tetapi
menyaring RECORDS yg "tidak kosong", atau cell pertamanya "Tidak Date" atau
cell pertamanya "Tidak Wilayah".

Tetapi sebelumnya harus dicari cara untuk mengidentifikasi *RANGE yg
SEBENARNYA** TERPAKAI* di sheet itu. (Anda semua tahu bahwa*
UsedRange*tidak selalu cocok dengan kemauan; penjelasannya
agak panjang; jadi kita cuekin dulu)
Sedangkan method End(xlDown / xlToRight) terbatas pada data yg contigous
saja, demmikian juga dengan CurrentRegion.
Jadi kesimpulannya: UsedRange, End(xlArah) dan CurrentRegion, tidak memenuhi
spesifikasi yg kita harapkan dlm mendeksi* Range yg LIAR, range yg dibuat
tanpa mengindahkan kaidah database, range yg dibuat dengan semauk-mauknya..*
!

Di sini, kita mencoba meraba range YG SEBENARNYA TERPAKAI dengan fungsi
ctvDataArea (fungsi 'bikinan' dalam negeri, dijual dengan kondisi :
"Loentoer Tidak Ditanggung" !! hi hi...)

Penjelasan coding sepertinya tidak diperlukan karena ini hanyalah makro
sederhana; tidak mengandung hal hal baru atau rumit..

Sub YaaaaaGituDeh()
Dim Sumber As Range, NewTbl As Range
Dim n As Long, r As Long, c As Integer, k As Integer
Set Sumber = ctvDataArea(ActiveSheet)
Set Sumber = Sumber.Resize(Sumber.Rows.Count, 7)
Set NewTbl = Sumber.Offset(2, Sumber.Columns.Count + 4)
NewTbl.ClearContents
For n = 1 To Sumber.Rows.Count
If Not Sumber(n, 1) = vbNullString Then
If Not LCase(Sumber(n, 1)) = "date" Then
If LCase(Sumber(n, 1)) = "wilayah" Then
If r = 0 Then
For c = 1 To Sumber.Columns.Count
If Not Sumber(n, c) = vbNullString Then
k = k + 1
NewTbl(0, k) = Sumber(n, c)
End If
Next c
End If
Else
r = r + 1: k = 0
For c = 1 To Sumber.Columns.Count
If Not Sumber(n, c) = vbNullString Then
k = k + 1
NewTbl(r, k) = Sumber(n, c)
End If
Next c
End If
End If
End If
Next n
Set NewTbl = NewTbl.CurrentRegion
NewTbl.EntireColumn.AutoFit
End Sub

*(2)*
Cara ke (2) : menghapusi (bukan "ngapusi" lho!) kolom-kolom kosong yg
berada DI DALAM Tabel; kemudian juga menghapusi baris-baris yg kosong, dan
juga baris-baris yg mengandung kata "wilayah" maupun kata "date" (kecuali
pada baris tertentu).

Demi keakuratan pendeteksian (otomatis) * letak & dimensi tabel* yg akan
dirujuk, makro ini juga memerlukan fungsi buatan dalam negeri:
ctvDataArea (boleh
dipakai di aplikasi -aplikasi anda asal menyadari bahwa kondisinya =
"loentoer tidak ditanggung")
Ulasan mengenai Fungsi yang bisa Loentoer ini, dan mengapa harus dibuat
untuk menggantikan kelemahan UsedRange / Ex(xlArah) / Currentregion,
insyaallah akan dibahas dlm tulisan tersendiri dlm satu dua hari ini.; kalau
siti tidak lupa..)

Makro ini, seperti makro cara (1), sangat mengandalkan bentuk tabel yg akan
diolah *terutama pada 2 baris pertama* harus persis seperti contoh yg
diajukan. (deskripsi Tanggal dan Heading Kolom)

Sub Begitulah_Kira_Kira()
' menghilangkan kolom kosong dan row kosong di dalam tabel
' menghilangkan row dengan syarat tertentu di dalam tabel
' siti Vi // 26 jun 2011
'------------------------------------------------------
Dim RNG As Range, r As Long, brss As Long
Dim c As Integer, kols As Integer
Set RNG = ctvDataArea(ActiveSheet)
brss = RNG.Rows.Count
kols = RNG.Columns.Count
For r = brss To 1 Step -1
If WorksheetFunction.CountA(RNG(r + 1, 1).Resize(1, kols)) = 0 Then
RNG(r + 1, 1).Resize(1, kols).Delete Shift:=xlUp
End If
If LCase(RNG(r + 1, 1)) = "date" Or _
LCase(RNG(r + 1, 1)) = "wilayah" Then
If r > 1 Then
RNG(r + 1, 1).Resize(1, kols).Delete Shift:=xlUp
End If
End If
Next r
For c = kols To 1 Step -1
If WorksheetFunction.CountA(RNG(1, c + 1).EntireColumn) = 0 Then
RNG(1, c + 1).EntireColumn.Delete
End If
Next c
RNG(1).Resize(1, kols).ClearContents
End Sub

2011/6/26 $martin <p0443dv@gmail.com>
>
> Dear Pakar Excel,
>
> Saya memiliki problem record macro sederhana, yaitu *menghapus beberapa
kolom.*
> Namun karena jumlah baris yang saya gunakan berubah-ubah sering ada data
yang tidak ikut ter-convert.
>
> Mohon bantuan dari pakar excel sekalian atas bantuannya terima kasih
>
5.

how to reference a cell in sheet 1 to another cell in sheet 2 automa

Posted by: "gsh" gsho5892@yahoo.com   gsho5892

Wed Jun 29, 2011 6:17 pm (PDT)



Dear xl experts

how to reference a cell in sheet 1 to another cell in sheet 2 automatically?

For example, sheet 1 cell A1 is 20, A2 is 30, A3 is 40. Sheet 2 cell A1 is 50, A2 is 60, A3 is 70. How to get the value in sheet 1 & sheet 2 into sheet 3 cell A1, A2,A3,A4, A5 & A6 automatically?

Thank you.

Regards

Sara


6a.

Re: Membagi secara proporsional perunit

Posted by: "Salomo Benny Simanjuntak" salomo_benny@yahoo.co.id   salomo_benny

Wed Jun 29, 2011 6:19 pm (PDT)



Dear PaK Prasojo,

Saya tidak pandai menjelaskan, namun saya mencoba dengan rumus seperti
dibawah ini, mudah-mudahan dapat membantu

=IF(MOD(C4,1)<=0.59,ROUNDDOWN(C4,0),ROUNDUP(C4,0))

Regards,

Simanjuntak Benny J Salomo

P Save a tree to Protect the future today...please don't print this e-mail
unless you really need to

From: XL-mania@yahoogroups.com [mailto:XL-mania@yahoogroups.com] On Behalf
Of PRASOJO
Sent: Wednesday, June 22, 2011 10:06 AM
To: XL-mania@yahoogroups.com
Subject: ]] XL-mania [[ Membagi secara proporsional perunit

Dear Pakar Excelmania.

Mohon bantuannya dalam memecahkan masalah berikut ini.
Saya kesulitan membagi secara proporsional 1.300 jumlah radiotape yang harus
diberikan kepada salesman untuk dibagikan kepada Customernya. Pembagian yang
saya lakukan kepada salesman berdasarkan jumlah customer yang dimiliki
masing-masing salesman. Bagaiman membuat function macro (biar lebih
pendek/simple) atau rumus yang dapat secara otomatis menghitung pembagian
perUnitnya kepada masing-masing salesman.

Thanks
Regards

Prasojo

7.

menghitung pembagian tahun dan bulan

Posted by: "eka camelia" eka_camelia@yahoo.com   eka_camelia

Wed Jun 29, 2011 6:21 pm (PDT)



para master excel....

mohon di bantu dong rumus perhitungan yg di kolom D

ma kasih banyak dah dibantu....
8.

Hapus duplicate di kolom A sekaligus gabung cellnya di kolom B

Posted by: "akbar arsyad" akbar_arsyad@yahoo.co.id   akbar_arsyad

Wed Jun 29, 2011 6:21 pm (PDT)





Dear all

Saya minta tolong, saya punya permasalahan dimana saya mempunyai tabel seperti
dibawah ini

Hewan Makanannya
Kucing Daging dan
Kucing Ikan
Anjing Tulang, Ayam,
Anjing dan Daging
Kelinci Rumput
Kuda Rumput, jagung,
Kuda jerami, dan
Kuda biji, bijian
Sapi Jagung
Saya ingin membuat sheet baru yang menghapus nama hewan yang sama, misal kucing
dibaris kedua dan ketiga, menjadi hanya satu barsi saja dengan makanannya hanya
satu baris saja yang merupakan gabungan dari cell "daging dan" serta cell "Ikan"

Terima Kasih,
Akbar Jamaluddin Arsyad
9.

agar file excel tidak bisa dicopy orang lain?

Posted by: "supri yadi" supriyadi_sbm@yahoo.co.id   supriyadi_sbm

Wed Jun 29, 2011 6:21 pm (PDT)



Dear para Suhu & Master Xl,

Saya mau tanya, bisa gak file xl (.xls / .xlsx) di buat tidak bisa di copy paste sama orang lain?, dan bagaimana cara mengembalikannya?,
karena di tempat saya bekerja, semua format menggunakan file xl, dan saya tidak ingin ada yang meng-copy data nya tanpa seijin saya.
Terima Kasih atas bantuannya,

Best Regards,
Supriyadi
Desa Santan Ilir
Mobile : 082149391649
10a.

update cell dengan tanggal

Posted by: "akhmad kurniawan" wawan01ex@yahoo.com   wawan01ex

Wed Jun 29, 2011 6:22 pm (PDT)



dear para master,,

ak pengen tw caranya biar di CELL (A1 misalnya) bisa otomatis nampilin hari ama tanggal saat ini caranya gimana ya, ada yg bs bntu ak?

mkasih sblmnya bwt smnya...

Recent Activity
Visit Your Group
Yahoo! Groups

Parenting Zone

Resources and tips

for parents

Yahoo! Groups

Cat Zone

Connect w/ others

who love cats.

Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Need to Reply?

Click one of the "Reply" links to respond to a specific message in the Daily Digest.

Create New Topic | Visit Your Group on the Web
+-:: XL-mania ::::::::::::::::::::----------------------------------+
| tiap tanggal gajian, order buku "mengapa boss benci chart anda    |
| membludak :) ayo2 pesan yang belum punya....                      |
| http://www.facebook.com/group.php?gid=37671048001&ref=mf          |
+-------------------------------------------------------------------+
| DILARANG : MLM, money game, OOT, iklan tanpa izin, SARA, testing, |
| pembicaraan pribadi, one line message,  melecehkan,  tidak sopan. |
+-------------------------------------------------------------------+
| Buat subjek yang kreatif, jangan : "tanya", "help", "mohon bantu" |
| Usahakan besar attachment < 200 kb. Gunakan  winzip  jika  perlu. |
+-------------------------------------------------------------------+
| Ajak teman-teman Anda bergabung dengan mengirim e-mail kosong ke  |
| XL-mania-subscribe@yahoogroups.com atau kirimkan mereka file dari |
| http://groups.yahoo.com/group/XL-mania/files/Promotion/           |
+-------------------------------------------------------------------+
| Berikan testimoni di : http://www.friendster.com/xlmania atau...  |
| http://www.xl-mania.com/2008/06/testimoni-xl-mania.html           |
+-------------------------------------------------------------------+
| Message lama ada di :                                             |
| http://groups.yahoo.com/group/XL-mania/messages [perlu yahoo id]  |
| http://www.mail-archive.com/xl-mania@yahoogroups.com              |
+-------------------------------------------------------------------+
MARKETPLACE

Stay on top of your group activity without leaving the page you're on - Get the Yahoo! Toolbar now.

READ MORE....

[smf_addin] Digest Number 1872

Messages In This Digest (1 Message)

1.
Reuter Datalink From: jagonzb

Message

1.

Reuter Datalink

Posted by: "jagonzb" jagonzb@yahoo.com   jagonzb

Wed Jun 29, 2011 8:48 am (PDT)



Good morning Randy,
I am subscribed to ReuterDatalink (EndOfDay); it feeds Metastock.
Is it there anyway that I could read the Metastock Files (and/or Reuter Data on demand feed) and populate a cell in Excel (i.e. One cell would contain the symbol and have Last Close displayed in an other)?
Thank you in advance.
Rgd
Jorge Gonzalez

Recent Activity
Visit Your Group
Ads on Yahoo!

Learn more now.

Reach customers

searching for you.

Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Yahoo! News

Odd News

You won't believe

it, but it's true

Need to Reply?

Click one of the "Reply" links to respond to a specific message in the Daily Digest.

Create New Topic | Visit Your Group on the Web
READ MORE....

[belajar-excel] Digest Number 1220

Messages In This Digest (10 Messages)

Messages

1a.

mohon batuan

Posted by: "Arifna" arifna_h@yahoo.com   arifna_h

Wed Jun 29, 2011 6:15 pm (PDT)



salam para master Excel, semoga sehat semuanya .....

q salah seorang TU di sekolah swasta d semarang mohon bantuannya ....

tolong buatin tutorial untuk pembayaran administrasi siswa seperti spp, uang gedung, Osis, LKS, dll ....intinya kita bisa tau tunggakan siswa persemester siapa yang belum lunas untuk di jadikan syart untuk mengikuti ujian semester. ( dengan gambar lebih bagus). syukur2 aplikasi yang sudah jadi ... tapi yang bisa di edit sesuai kebutuhan sekolah kami .

maksih sebelum dan sesudahnya ....

salam...

1b.

Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "Septi Yunita" septi.yunita@smoe.com

Wed Jun 29, 2011 8:14 pm (PDT)





Assalammualaikum be excel, mohon bantuannya lagi ya..
File terlampir

Terimakasih sebelumnya

SY

#####################################################################################
This email is confidential and may also be privileged. If you are not the intended
recipient, please delete it and notify us immediately. You should not copy or use
it for any purpose, nor disclose its contents to any other person.
#####################################################################################
1c.

Re: mohon batuan

Posted by: "Herry Sutjipto" herrysri@yahoo.com   herrysri

Wed Jun 29, 2011 8:25 pm (PDT)



Arifna,
 
 ......... tapi yang bisa di edit sesuai kebutuhan sekolah kami.
Kebutuhan sekolahnya seperti apa?
 
Herry

From: Arifna <arifna_h@yahoo.com>
To: belajar-excel@yahoogroups.com
Sent: Thursday, June 30, 2011 8:10 AM
Subject: [belajar-excel] mohon batuan

 

salam para master Excel, semoga sehat semuanya .....

q salah seorang TU di sekolah swasta d semarang mohon bantuannya ....

tolong buatin tutorial untuk pembayaran administrasi siswa seperti spp, uang gedung, Osis, LKS, dll ....intinya kita bisa tau tunggakan siswa persemester siapa yang belum lunas untuk di jadikan syart untuk mengikuti ujian semester. ( dengan gambar lebih bagus). syukur2 aplikasi yang sudah jadi ... tapi yang bisa di edit sesuai kebutuhan sekolah kami .

maksih sebelum dan sesudahnya ....

salam...

1d.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "STDEV(i)" setiyowati.devi@gmail.com   siti_vi

Wed Jun 29, 2011 8:29 pm (PDT)



gunakan fungsi datedif

(belum lama ini fungsi tsb SUDAH diubek-ubek di milis be-Excel)

On Thu, Jun 30, 2011 at 9:43 AM, Septi Yunita <septi.yunita@smoe.com> wrote:

> **
>
> Assalammualaikum be excel, mohon bantuannya lagi ya..
>
> File terlampir ****
>
> Terimakasih sebelumnya
>
> SY
>
1e.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "M. Ferdiansyah" muh_ferdy@pusri.co.id   muh_f3rdi4n5yah

Wed Jun 29, 2011 8:29 pm (PDT)



Dear bu Septi,

Selagi menunggu jawaban dari para Master, izinkan saya untuk menjawab ya.

terimakasih,

ferdy

*file terlampir (excel 2003)

>
>
>
> Assalammualaikum be excel, mohon bantuannya lagi ya..
> File terlampir
>
> Terimakasih sebelumnya
>
>
> SY
>
> #####################################################################################
> This email is confidential and may also be privileged. If you are not the
> intended
> recipient, please delete it and notify us immediately. You should not
> copy or use
> it for any purpose, nor disclose its contents to any other person.
> #####################################################################################
>

____________ _________ _________ _________ _________ _________ _________
Notice : This e-mail (and any attachment) is strictly confidential and
is intended only for the addressee(s)above. Is strictly prohibited to
forward, print, copy, or otherwise reproduce this message that would
allow it to be viewed by any individual not originally listed as
a recipient(s). If you have received this e-mail in error, please
immediately notify the sender and delete this message. The opinions
expressed in this e-mail (and any attachment) are those of the individual
sender and may not necessarily reflect the views of PT Pusri.
____________ _________ _________ _________ _________ _________ _________
1f.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "M. Ferdiansyah" muh_ferdy@pusri.co.id   muh_f3rdi4n5yah

Wed Jun 29, 2011 8:36 pm (PDT)



Maaf bu ada sedikit perubahan & rumusnya berbelit"..

> Dear bu Septi,
>
> Selagi menunggu jawaban dari para Master, izinkan saya untuk menjawab ya.
>
> terimakasih,
>
> ferdy
>
> *file terlampir (excel 2003)
>
>>
>>
>>
>> Assalammualaikum be excel, mohon bantuannya lagi ya..
>> File terlampir
>>
>> Terimakasih sebelumnya
>>
>>
>> SY
>>
>> #####################################################################################
>> This email is confidential and may also be privileged. If you are not
>> the
>> intended
>> recipient, please delete it and notify us immediately. You should not
>> copy or use
>> it for any purpose, nor disclose its contents to any other person.
>> #####################################################################################
>>
>
>
>
> ____________ _________ _________ _________ _________ _________ _________
> Notice : This e-mail (and any attachment) is strictly confidential and
> is intended only for the addressee(s)above. Is strictly prohibited to
> forward, print, copy, or otherwise reproduce this message that would
> allow it to be viewed by any individual not originally listed as
> a recipient(s). If you have received this e-mail in error, please
> immediately notify the sender and delete this message. The opinions
> expressed in this e-mail (and any attachment) are those of the individual
> sender and may not necessarily reflect the views of PT Pusri.
> ____________ _________ _________ _________ _________ _________ _________

____________ _________ _________ _________ _________ _________ _________
Notice : This e-mail (and any attachment) is strictly confidential and
is intended only for the addressee(s)above. Is strictly prohibited to
forward, print, copy, or otherwise reproduce this message that would
allow it to be viewed by any individual not originally listed as
a recipient(s). If you have received this e-mail in error, please
immediately notify the sender and delete this message. The opinions
expressed in this e-mail (and any attachment) are those of the individual
sender and may not necessarily reflect the views of PT Pusri.
____________ _________ _________ _________ _________ _________ _________
1g.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "M. Ferdiansyah" muh_ferdy@pusri.co.id   muh_f3rdi4n5yah

Wed Jun 29, 2011 8:39 pm (PDT)



Maaf bu ada sedikit perubahan & rumusnya berbelit"..

> Dear bu Septi,
>
> Selagi menunggu jawaban dari para Master, izinkan saya untuk menjawab ya.
>
> terimakasih,
>
> ferdy
>
> *file terlampir (excel 2003)
>
>>
>>
>>
>> Assalammualaikum be excel, mohon bantuannya lagi ya..
>> File terlampir
>>
>> Terimakasih sebelumnya
>>
>>
>> SY
>>
>> #####################################################################################
>> This email is confidential and may also be privileged. If you are not
>> the
>> intended
>> recipient, please delete it and notify us immediately. You should not
>> copy or use
>> it for any purpose, nor disclose its contents to any other person.
>> #####################################################################################
>>
>
>
>
> ____________ _________ _________ _________ _________ _________ _________
> Notice : This e-mail (and any attachment) is strictly confidential and
> is intended only for the addressee(s)above. Is strictly prohibited to
> forward, print, copy, or otherwise reproduce this message that would
> allow it to be viewed by any individual not originally listed as
> a recipient(s). If you have received this e-mail in error, please
> immediately notify the sender and delete this message. The opinions
> expressed in this e-mail (and any attachment) are those of the individual
> sender and may not necessarily reflect the views of PT Pusri.
> ____________ _________ _________ _________ _________ _________ _________

____________ _________ _________ _________ _________ _________ _________
Notice : This e-mail (and any attachment) is strictly confidential and
is intended only for the addressee(s)above. Is strictly prohibited to
forward, print, copy, or otherwise reproduce this message that would
allow it to be viewed by any individual not originally listed as
a recipient(s). If you have received this e-mail in error, please
immediately notify the sender and delete this message. The opinions
expressed in this e-mail (and any attachment) are those of the individual
sender and may not necessarily reflect the views of PT Pusri.
____________ _________ _________ _________ _________ _________ _________

____________ _________ _________ _________ _________ _________ _________
Notice : This e-mail (and any attachment) is strictly confidential and
is intended only for the addressee(s)above. Is strictly prohibited to
forward, print, copy, or otherwise reproduce this message that would
allow it to be viewed by any individual not originally listed as
a recipient(s). If you have received this e-mail in error, please
immediately notify the sender and delete this message. The opinions
expressed in this e-mail (and any attachment) are those of the individual
sender and may not necessarily reflect the views of PT Pusri.
____________ _________ _________ _________ _________ _________ _________
1h.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "Septi Yunita" septi.yunita@smoe.com

Wed Jun 29, 2011 8:46 pm (PDT)



Iya mbak siti saya sudah coba pkai datedif, klo datedif jadinya khan sisa bulan dan sisa harinya, tapi pada contoh saya missal :
Mulai bekerja : I januari 2011
Habis kontrak : 15 january 2012
Tapi mengundurkan diri pada : 15 november 2011

Sisa kontraknya di breakdown :
Sisa bulan November = 15 hari ( 1 bulan dihitung 30 hari)
Pada bulan desember penuh 30 hari jadi = 1 bulan
Di bulan januari sisa 15 hari

Jadi sisa tersebut di rinci dalam kolom2 pad afile
Mohon masukannya

From: belajar-excel@yahoogroups.com [mailto:belajar-excel@yahoogroups.com] On Behalf Of STDEV(i)
Sent: Thursday, June 30, 2011 10:29 AM
To: belajar-excel@yahoogroups.com
Subject: Re: [belajar-excel] Hitung Sisa Kontrak kary Mengundurkan diri

gunakan fungsi datedif

(belum lama ini fungsi tsb SUDAH diubek-ubek di milis be-Excel)

On Thu, Jun 30, 2011 at 9:43 AM, Septi Yunita <septi.yunita@smoe.com<mailto:septi.yunita@smoe.com>> wrote:
Assalammualaikum be excel, mohon bantuannya lagi ya..
File terlampir
Terimakasih sebelumnya
SY

#####################################################################################
This email is confidential and may also be privileged. If you are not the intended
recipient, please delete it and notify us immediately. You should not copy or use
it for any purpose, nor disclose its contents to any other person.
#####################################################################################
1i.

Re: Hitung Sisa Kontrak kary Mengundurkan diri

Posted by: "Septi Yunita" septi.yunita@smoe.com

Wed Jun 29, 2011 8:55 pm (PDT)



Trims pak ferdiansyah, Cuma ada kesalahan juga dari saya di kolom total ganti rugi yang benar seperti dibawah ini,

=((I7+J7+K7)/30)*L7+(I7+J7+K7)+((I7+J7+K7)/30)*N7

Mungkin bermanfaat buat yang lain jadi saya lampirkan file jawaban dari pak ferdiansyah dimana rumus totalnya sudah saya perbaiki

From: belajar-excel@yahoogroups.com [mailto:belajar-excel@yahoogroups.com] On Behalf Of M. Ferdiansyah
Sent: Thursday, June 30, 2011 10:39 AM
To: belajar-excel@yahoogroups.com
Subject: Re: [belajar-excel] Hitung Sisa Kontrak kary Mengundurkan diri

Maaf bu ada sedikit perubahan & rumusnya berbelit"..

> Dear bu Septi,
>
> Selagi menunggu jawaban dari para Master, izinkan saya untuk menjawab ya.
>
> terimakasih,
>
> ferdy
>
> *file terlampir (excel 2003)
1j.

Re: mohon batuan

Posted by: "hendrik karnadi" hendrikkarnadi@yahoo.com   hendrikkarnadi

Wed Jun 29, 2011 10:54 pm (PDT)



Rasanya sudah sangat sering "dihimbau"oleh moderator beberapa hal seperti :
- Judul "mohon bantuan" --> tidak mencerminkan topik yang ditanyakan
- Pertanyaan dalam bentuk kalimat, tanpa lampiran worksheet.
 
Saya yakin banyak rekan yang ingin menjawab, termasuk saya, namun ....
- Perlu imajinasi yang belum tentu sesuai keinginan penanya
- Sesudah dijawab pasti akan timbul pertanyaan lagi dari penanya karena jawabannya kemungkinan besar tidak sesuai dengan keinginan
- Apalagi ada tambahan kalimat "tapi yang bisa di edit sesuai kebutuhan sekolah kami" seperti dipertanyakan oleh Pak Herry.
 
Sedikit tambahan, pemecahan sauatu masalah sangat tergantung dari identifikasi masalah.
 
Mari kita tunggu contoh worksheet dan keinginan dari penanya.
 
Salam,
Hendrik Karnadi

--- On Thu, 30/6/11, Herry Sutjipto <herrysri@yahoo.com> wrote:

From: Herry Sutjipto <herrysri@yahoo.com>
Subject: Re: [belajar-excel] mohon batuan
To: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Date: Thursday, 30 June, 2011, 10:25 AM

 

Arifna,
 
 ......... tapi yang bisa di edit sesuai kebutuhan sekolah kami.
Kebutuhan sekolahnya seperti apa?
 
Herry

From: Arifna <arifna_h@yahoo.com>
To: belajar-excel@yahoogroups.com
Sent: Thursday, June 30, 2011 8:10 AM
Subject: [belajar-excel] mohon batuan

 

salam para master Excel, semoga sehat semuanya .....

q salah seorang TU di sekolah swasta d semarang mohon bantuannya ....

tolong buatin tutorial untuk pembayaran administrasi siswa seperti spp, uang gedung, Osis, LKS, dll ....intinya kita bisa tau tunggakan siswa persemester siapa yang belum lunas untuk di jadikan syart untuk mengikuti ujian semester. ( dengan gambar lebih bagus). syukur2 aplikasi yang sudah jadi ... tapi yang bisa di edit sesuai kebutuhan sekolah kami .

maksih sebelum dan sesudahnya ....

salam...

Recent Activity
Visit Your Group
Give Back

Yahoo! for Good

Get inspired

by a good cause.

Y! Toolbar

Get it Free!

easy 1-click access

to your groups.

Yahoo! Groups

Start a group

in 3 easy steps.

Connect with others.

Need to Reply?

Click one of the "Reply" links to respond to a specific message in the Daily Digest.

Create New Topic | Visit Your Group on the Web
---------------------------------------------------------------------
bergabung ke milis (subscribe), kirim mail kosong ke:
belajar-excel-subscribe@yahoogroups.com

posting ke milis, kirimkan ke:
belajar-excel@yahoogroups.com

berkunjung ke web milis
http://tech.groups.yahoo.com/group/belajar-excel/messages

melihat file archive / mendownload lampiran
http://www.mail-archive.com/belajar-excel@yahoogroups.com/
atau (sejak 25-Apr-2011) bisa juga di :
http://milis-belajar-excel.1048464.n5.nabble.com/

menghubungi moderators & owners: belajar-excel-owner@yahoogroups.com

keluar dari membership milis (UnSubscribe):
kirim mail kosong ke  belajar-excel-unsubscribe@yahoogroups.com
---------------------------------------------------------------------
READ MORE....