Rabu, 31 Oktober 2012

Re: [ExcelVBA] Re: XL2007 Unable to select Form TextBox with code

 

> ... = Len(Mem_FirstMM.Text) ' [not Len(.Text)]

Yes, of course, ta.

> For me the issue here is readability (simplicity even) and this is
> why the With . . End With wins out.

... and my error supports the readability (lack of) question. :-)

It's just too easy not to see the isolated dots when reading the code.

I do use With quite often, and like it. But, I've also seen some horribly
obscure code produced on occasions by over-use of With.

Regards, Dave S

----- Original Message -----
From: "Derek Turner" <g4swy@yahoo.com>
To: <ExcelVBA@yahoogroups.com>
Sent: Wednesday, October 31, 2012 11:32 AM
Subject: Re: [ExcelVBA] Re: XL2007 Unable to select Form TextBox with code

Dear All

Surely, David should have said :-

>With Mem_FirstMM
> .SelStart = 0
> .SelLength = Len(.Text)
>End With

>is the same as simply saying

>Mem_FirstMM.SelStart = 0
>Mem_FirstMM.SelLength = Len(Mem_FirstMM.Text) ' [not Len(.Text)]

For me the issue here is readability (simplicity even) and this is why the
With . . End With wins out.

I am a great fan of With . . End With but detractors claim it can produce
unreadable code. Well maybe they do ?

And Steve, still talking readability,
what is Mem_FirstMM ?

Regards

Derek Turner
+++

>________________________________
> From: "david.smart@ubs.com" <david.smart@ubs.com>
>To: ExcelVBA@yahoogroups.com
>Sent: Tuesday, 30 October 2012, 5:05
>Subject: RE: [ExcelVBA] Re: XL2007 Unable to select Form TextBox with code
>
>
>
>Re "With" not having components ...
>
>I suppose what I'm getting at is that it's important not to think of
>With as a component in its own right. It's just a shorthand way of
>writing code. E.g.
>
>With Mem_FirstMM
>.SelStart = 0
>.SelLength = Len(.Text)
>End With
>
>is the same as simply saying
>
>Mem_FirstMM.SelStart = 0
>Mem_FirstMM.SelLength = Len(.Text)
>
>So, it's important to remember that it's the Mem_FirstMM components you
>are accessing.
>
>This becomes more relevant when you have complicated With constructs
>(either nested or comma separated in the one With) and you have to keep
>track of which objects the With is providing you shorthand access to.
>
>Some people hate With and won't use it. Certainly, code with nested or
>comma-separated With items can very quickly become unreadable.
>
>Regards, Dave S
>
>
>________________________________
>
>From: ExcelVBA@yahoogroups.com [mailto:ExcelVBA@yahoogroups.com] On
>Behalf Of noskosteve
>Sent: Tuesday, 30 October 2012 13:49
>To: ExcelVBA@yahoogroups.com
>Subject: [ExcelVBA] Re: XL2007 Unable to select Form TextBox with code
>
>Couldn't wait. My method works fine...
>
>> I don't have a bad-value test ...
>I understood your example 100% & wasn't question it, sorry.
>
>> "Call" is ... not required... parameters ... inside parentheses
>I know this. I Shouldn't have mentioned it. I just don't usually include
>it for Msg boxes.
>
>> I had the MsgBox inside the With because I included
>> the .Text from the textbox in its parameters.
>Ahhh! Some of this does make sense, Steve. I sez to self. I'll keep that
>trick in mind.
>
>> > I understand the With TextBox and its components ...
>> A With doesn't have components, it simply makes the
>> components of the TextBox available ...
>
>Ah well. A Rose is a Flower. I picked that term not knowing if there was
>better jargon figuring you'd know what I meant, but I still think it
>flys ok. They could be considered components of the With as well, no?
>... parameters...operands... arguments, even (for argument sake...so to
>speak)(;-)
>
>Here's my functioning snippet - cool to see text now selected. (I also
>played with some of the things to help understand the function of each -
>especially the Cancel.Value)
>
>. If Mem_FirstMM < 1 Then
>. MsgBox "The First memory can not be < 1 ..." ' detail omitted
>. With Mem_FirstMM
>. .SelStart = 0 ' Cusor at left
>. .SelLength = Len(.Text) ' Nice touch. Select it all
>. End With
>. Cancel.Value = True ' kill User goof.
>. End If
>
>Thanks, Steve N.
>... Still playing ...
>
>----------
>
>Visit our website at http://www.ubs.com
>
>This message contains confidential information and is intended only
>for the individual named. If you are not the named addressee you
>should not disseminate, distribute or copy this e-mail. Please
>notify the sender immediately by e-mail if you have received this
>e-mail by mistake and delete this e-mail from your system.
>
>E-mails are not encrypted and cannot be guaranteed to be secure or
>error-free as information could be intercepted, corrupted, lost,
>destroyed, arrive late or incomplete, or contain viruses. The sender
>therefore does not accept liability for any errors or omissions in the
>contents of this message which arise as a result of e-mail transmission.
>If verification is required please request a hard-copy version. This
>message is provided for informational purposes and should not be
>construed as a solicitation or offer to buy or sell any securities
>or related financial instruments.
>
>UBS reserves the right to retain all messages. Messages are protected
>and accessed only in legally justified cases.
>
>[Non-text portions of this message have been removed]
>
>
>
>
>

[Non-text portions of this message have been removed]

------------------------------------

----------------------------------
Be sure to check out TechTrax Ezine for many, free Excel VBA articles! Go
here: http://www.mousetrax.com/techtrax to enter the ezine, then search the
ARCHIVES for EXCEL VBA.

----------------------------------
Visit our ExcelVBA group home page for more info and support files:
http://groups.yahoo.com/group/ExcelVBA

----------------------------------
More free tutorials and resources available at:
http://www.mousetrax.com

----------------------------------Yahoo! Groups Links

-----
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1427 / Virus Database: 2441/5364 - Release Date: 10/30/12

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (14)
Recent Activity:
----------------------------------
Be sure to check out TechTrax Ezine for many, free Excel VBA articles! Go here: http://www.mousetrax.com/techtrax to enter the ezine, then search the ARCHIVES for EXCEL VBA.

----------------------------------
Visit our ExcelVBA group home page for more info and support files:
http://groups.yahoo.com/group/ExcelVBA

----------------------------------
More free tutorials and resources available at:
http://www.mousetrax.com

----------------------------------
.

__,_._,___
READ MORE....

[belajar-excel] Digest Number 1879

1 New Message

Digest #1879

Message

Wed Oct 31, 2012 7:35 am (PDT) . Posted by:

"Yan Novianto" yan.novianto

Terimakasih P Amin dan P Hendrik

Saya udah obrak abrik tp ndak nemu :)

Tp saya ingat kalo saya punya program "Nitro PDF" yg nge-link ke program office termasuk excel

Kemudian saya instal ulang program tersebut, akhirnya sekarang sudah aman, ndak muncul muncul lagi, kendala yg sebelumnya terjadi

Sekali lagi, terimakasih

Best Regard

Yan Novianto

-----Original Message-----
From: ngademin Thohari <ngademinth@yahoo.co.id>
Sender: belajar-excel@yahoogroups.com
Date: Wed, 31 Oct 2012 18:07:44
To: belajar-excel@yahoogroups.com<belajar-excel@yahoogroups.com>
Reply-To: belajar-excel@yahoogroups.com
Subject: Bls: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"

saya juga penah menghadapi masalh yang sama, di macro VBA-tools-references- cari keterangan missing dan unclik/centang di hilangkan

terimakasih

amin


________________________________
Dari: hendrik karnadi <hendrikkarnadi@yahoo.com>
Kepada: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Dikirim: Rabu, 31 Oktober 2012 16:34
Judul: Re: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"


 
Coba buka macro yang ada pada sheet VBA "thisworkbook". Dari judul milis. kelihatannya kesalahan ada di macro "compilation" nya.

Salam,
Hendrik Karnadi


________________________________
From: Yan Novianto <yan.novianto@yahoo.com>
To: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Sent: Wednesday, 31 October 2012, 15:59
Subject: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"


 
Be Excel_er

Saya punya kendala dimana saat saya buka file excel selalu muncul pesan di bawah ini :

jika saya tekan "ok" atau "close" maka akan mucul pesan ke_2 seperti gambar di bawaha ini.



hal ini terjadi untuk fille baru ataupun file yang sudah ada isinya

apa yang harus saya lakukan agar tidak terjadi kendala seperti ini setiap saya buka file excel ?

terimakasih




GROUP FOOTER MESSAGE
---------------------------------------------------------------------
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....

[belajar-excel] Digest Number 1878

15 New Messages

Digest #1878
2a
4a
cara membuat tabel koma-koma by "thomas" themassto
4b
4c
Re: cara membuat tabel koma-koma by "hendrik karnadi" hendrikkarnadi
6a
proses kalkulasi terlalu lama by "ngademin Thohari" ngademinth
6b
Re: proses kalkulasi terlalu lama by "Mr. Kid" nmkid.family@ymail.com
6c
6d
6e
Re: proses kalkulasi terlalu lama by "Mr. Kid" nmkid.family@ymail.com
6f

Messages

Tue Oct 30, 2012 8:10 pm (PDT) . Posted by:

"Prodev SIMPLE PB" prodev_simple

Assalamu'alaikum Wr. Wb.

Terima kasih banyak atas pencerahannya.
Thanks to Mr. Bagus, Mr. Ghozi Alkatiri, and Mr. Kid atas solusinya.
Gabungan dari alternatif solusi yang diberikan dapat dikreasikan sehingga tampilan data dapat disesuaikan dengan kebutuhan.

Wassalam.

 
- prodev simple -

________________________________
Dari: Mr. Kid <mr.nmkid@gmail.com>
Kepada: belajar-excel@yahoogroups.com
Dikirim: Selasa, 30 Oktober 2012 17:45
Judul: Re: [belajar-excel] Mengetahui waktu tenggang jatuh tempo


 
Wa'alaikumussalam Wr. Wb.

Mungkin formula ini harus dicek lebih dulu terhadap semua tanggal [ jangan langsung pakai today() ].
Misal di E1 adalah data tanggal hari ini, yang bisa diperoleh dengan fungsi Today()

Jika tanggal jatuh tempo selalu hari ke-n dari tanggal 1 bulan sekarang :
artinya, untuk n=31 sedangkan bulan sekarang adalah februari 2012, maka tanggal jatuh tempo adalah 30 hari mulai tanggal 1 feb 2012 yang jatuhnya di 2 maret 2012
Data di baris 4 :
=ABS($E$1-EDATE($E$1-DAY($E$1)+C4,1*(DAY($E$1)>C4)))

Jika tanggal jatuh tempo per bulanlebih dari jumlah hari pada bulan sekarangmaka ditetapkan tanggal jatuh temponya pada hari terakhir bulan ini :
Data di baris 4 :
=ABS($E$1-EDATE($E$1-DAY($E$1)+MIN(C4,DAY(EOMONTH($E$1,0))),1*(DAY($E$1)>C4)))

File terlampir. Jangan lupa, coba dulu ubah nilai E1 dengan berbagai tanggal dan bulan, terutama pada bulan-bulan yang jumlah harinya tidak sampai 31. Kemudian, pilih juga tanggal-tanggal yang agak memberi warna terhadap data, seperti tanggal 1,2,15,16,17,27,29,30,31
Data sudah diatur dengan tanggal yang cukup variatif untuk pengujian, seperti tanggal 1,30,31,7,15,27

Wassalam,
Kid.

 

2012/10/30 Prodev SIMPLE PB <prodev_simple@yahoo.com>


>Assalamu'alaikum Wr. Wb.
>
>
>Dear Excelers...mohon pencerahannya untuk kasus sederhana berikut ini (file terlampir).
>Untuk mengetahui waktu tenggang jatuh tempo tiap bulannya.
>Terima kasih atas solusinya.
>
>
>Wassalam.

>- prodev simple -
>
>_
>

Tue Oct 30, 2012 10:54 pm (PDT) . Posted by:

"daniel_aho" daniel_aho

maaf baru bales emailnya Mr Kid, baru buka email lagi.

Terima kasih sebelumnya atas saran dan solusinya, kalo di save as /
disimpan dengan file baru sudah saya coba tapi sama saja tidak bisa di
save. setelah coba di utak-atik ternyta ada salah satu sheet yang jadi
akar masalhnya, dan setelah sheet tersebut di delete akhirnya file
kembali bisa di save ( tidak repaired lagi ).... hehehehehehe

Terima kasih sebelumnya,

daniel

On 10/25/2012 10:56 PM, Mr. Kid wrote:
>
> Bagaimana kalau di save as jadi file lain lebih dulu.
> Bila perlu, shape yang dinyatakan dalam comment repars to dihilangkan
> lebih dulu. Jika sudah bisa di-save dan dibuka kembali, baru dibuatkan
> shape baru untuk mengganti yang tadi dihilangkan.
>
> Wassalam,
> Kid.
>
> 2012/10/25 daniel_aho <daniel_aho@yahoo.co.id
> <mailto:daniel_aho@yahoo.co.id>>
>
> Dear Para Pakar2 Excel yang baik hati,
>
>
> Tolong bantu, saya punya permasalahan seperti ini :
> Saya punya file xlsm tapi saat file tersebut dibuka ada keterangan
> seperti gbr dibawah ini :
>
> Jika dipilih "No" maka file tersebut tidak terbuka, tapi jika
> dipilih "Yes" file terbuka tapi ada keterangan spt gbr dbwah ini :
>
>
>
> Dan kemudian dengan klik Comman "Close" atau ditutup perintah
> tersebut, baru file terbuka, tapi file tersebut "Repaired"
> sehingga tidak bisa di save.
>
> MOhon bantuan para master2 Excel, maaf saya tidak bisa lampirkan
> filenya karena ukuran file besar, takut menyalahi aturan milis...
> hehehehehhee
>
>
>
> Terima kasih,
>
>
> daniel
>
>
>

Tue Oct 30, 2012 11:15 pm (PDT) . Posted by:

"daniel_aho" daniel_aho

*Dear Pak Hendrik & Para master2 Excel,

*

*Jika menggunakan 1 filtertanggaldi Cell "B2"sudah berhasil sesuai
dengan solusi yang diberikan pak Hendrik, tapi Bagaimana jika
Filtertanggal tersebut dikembangkan dengan 2 coloum kunci di Cell "B2"
dan Cell "C2"dengan pengertian Cell "B2" sebagaitanggal awal dan Cell
"C2" sebagai tanggal akhir, *

*Mohon pencerahan dari Master2 Excelsemua...

*

*Terima kasih,

*

*Daniel*

*
*

On 8/28/2012 2:41 PM, hendrik karnadi wrote:
> Sama2 Pak, senang bisa sangat-sangat membantu banget.
>
> Salam,
> Hendrik Karnadi
>
> ----------------------------------------------------------
> *From:* daniel_aho <daniel_aho@yahoo.co.id>
> *To:* belajar-excel@yahoogroups.com
> *Sent:* Tuesday, 28 August 2012, 13:12
> *Subject:* Re: [belajar-excel] ambil sebagian data dari sheet lain
> dengan filter
>
> Pak Hendrik,
>
>
> Terima kasih banyak Pak.... Solusi yang sangat-sangat membantu banget,
> sudah sesuai yang diharapkan :-) :-) :-) :-) :-)
>
>
> daniel,
>
>
>
>
> On 8/28/2012 11:01 AM, hendrik karnadi wrote:
>> Coba lampiran file ini, menggunakan Event Worksheet_Change
>>
>> Salam,
>> Hendrik Karnadi
>>
>> ----------------------------------------------------------
>> *From:* daniel_aho <daniel_aho@yahoo.co.id>
>> <mailto:daniel_aho@yahoo.co.id>
>> *To:* belajar-excel@yahoogroups.com
>> <mailto:belajar-excel@yahoogroups.com>
>> *Sent:* Monday, 27 August 2012, 17:16
>> *Subject:* [belajar-excel] ambil sebagian data dari sheet lain dengan
>> filter
>>
>> Dear Para master2 Excel,
>>
>> Mohon bantuannya bagaimana cara untuk mengambil data sebagian dari Sheet
>> lain dengan menggunakan filter
>> (atau mungkin menggunakan macro),
>> berikut saya lampirkan filenya untuk lebih jelasnya,
>>
>> Terima kasih,
>>
>> daniel
>>
>>
>>
>
>
>
>

Tue Oct 30, 2012 11:40 pm (PDT) . Posted by:

"thomas" themassto

Dear exceler..

Saya punya masalah cara membuat table (hasil) dimana dalam 1 kolom nilainya
ada koma2nya. Soalnya kalau manual harus di cut satu per satu. Contoh file
saya lampirkan. Terima kasih

Terima kasih

Wed Oct 31, 2012 12:22 am (PDT) . Posted by:

"Bagus" bagus4bls

Dear Thomas;

File terlampir semoga sesuai harapan.

Ada dua jawaban:
Pada Tabel 2 (hasil) Pake UDF buatan Alm. Mbak Siti
Pada Tabel 3 (hasil) pake kolom bantu & Formula buatan Mr. Kid

Bagus

----- Original Message -----
From: thomas
To: belajar-excel@yahoogroups.com
Sent: Wednesday, October 31, 2012 1:37 PM
Subject: [belajar-excel] cara membuat tabel koma-koma

Dear exceler..

Saya punya masalah cara membuat table (hasil) dimana dalam 1 kolom nilainya ada koma2nya. Soalnya kalau manual harus di cut satu per satu. Contoh file saya lampirkan. Terima kasih

Terima kasih

Wed Oct 31, 2012 12:28 am (PDT) . Posted by:

"hendrik karnadi" hendrikkarnadi

Ini hasil karya Pak Anton yang dikirim ke milis hampir 2 tahun yang lalu.

Salam,
Hendrik Karnadi

________________________________
From: thomas <themassto@yahoo.com>
To: belajar-excel@yahoogroups.com
Sent: Wednesday, 31 October 2012, 13:37
Subject: [belajar-excel] cara membuat tabel koma-koma


 
Dear exceler….
Saya punya masalah cara membuat table (hasil) dimana dalam 1
kolom nilainya ada koma2nya. Soalnya kalau manual harus di cut satu per satu. Contoh
file saya lampirkan. Terima kasih
 
 
Terima kasih

Wed Oct 31, 2012 2:01 am (PDT) . Posted by:

"Yan Novianto" yan.novianto

Be Excel_er

Saya punya kendala dimana saat saya buka file excel selalu muncul pesan di bawah ini :

jika saya tekan "ok" atau "close" maka akan mucul pesan ke_2 seperti gambar di bawaha ini.

hal ini terjadi untuk fille baru ataupun file yang sudah ada isinya

apa yang harus saya lakukan agar tidak terjadi kendala seperti ini setiap saya buka file excel ?

terimakasih

Wed Oct 31, 2012 2:34 am (PDT) . Posted by:

"hendrik karnadi" hendrikkarnadi

Coba buka macro yang ada pada sheet VBA "thisworkbook". Dari judul milis. kelihatannya kesalahan ada di macro "compilation" nya.

Salam,
Hendrik Karnadi

________________________________
From: Yan Novianto <yan.novianto@yahoo.com>
To: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Sent: Wednesday, 31 October 2012, 15:59
Subject: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"


 
Be Excel_er

Saya punya kendala dimana saat saya buka file excel selalu muncul pesan di bawah ini :

jika saya tekan "ok" atau "close" maka akan mucul pesan ke_2 seperti gambar di bawaha ini.

hal ini terjadi untuk fille baru ataupun file yang sudah ada isinya

apa yang harus saya lakukan agar tidak terjadi kendala seperti ini setiap saya buka file excel ?

terimakasih

Wed Oct 31, 2012 3:07 am (PDT) . Posted by:

"ngademin Thohari" ngademinth

saya juga penah menghadapi masalh yang sama, di macro VBA-tools-references- cari keterangan missing dan unclik/centang di hilangkan

terimakasih

amin

________________________________
Dari: hendrik karnadi <hendrikkarnadi@yahoo.com>
Kepada: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Dikirim: Rabu, 31 Oktober 2012 16:34
Judul: Re: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"


 
Coba buka macro yang ada pada sheet VBA "thisworkbook". Dari judul milis. kelihatannya kesalahan ada di macro "compilation" nya.

Salam,
Hendrik Karnadi

________________________________
From: Yan Novianto <yan.novianto@yahoo.com>
To: "belajar-excel@yahoogroups.com" <belajar-excel@yahoogroups.com>
Sent: Wednesday, 31 October 2012, 15:59
Subject: [belajar-excel] Error saat buka Excel "compile error in hiden module : thisworkbook"


 
Be Excel_er

Saya punya kendala dimana saat saya buka file excel selalu muncul pesan di bawah ini :

jika saya tekan "ok" atau "close" maka akan mucul pesan ke_2 seperti gambar di bawaha ini.

hal ini terjadi untuk fille baru ataupun file yang sudah ada isinya

apa yang harus saya lakukan agar tidak terjadi kendala seperti ini setiap saya buka file excel ?

terimakasih

Wed Oct 31, 2012 3:05 am (PDT) . Posted by:

"ngademin Thohari" ngademinth

be-exceller

apakah data terlampir ini ada masalah, saya menghadapi masalah calculation processor dengan proses yang memakan waktu yang terlalu lama

waktu saya input di Part no. muncul dibawah Calculation ((2 processing )) dan counter percentagenya

terima kasih

amin

Wed Oct 31, 2012 3:10 am (PDT) . Posted by:

"Mr. Kid" nmkid.family@ymail.com

Coba manfaatkan pivot table untuk membentuk output seperti di sheet stock
persediaan

Kid.

2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>

> **
>
>
> be-exceller
>
> apakah data terlampir ini ada masalah, saya menghadapi masalah calculation
> processor dengan proses yang memakan waktu yang terlalu lama
>
> waktu saya input di Part no. muncul dibawah Calculation ((2 processing ))
> dan counter percentagenya
>
> terima kasih
>
> amin
>
>
>

Wed Oct 31, 2012 3:36 am (PDT) . Posted by:

"ngademin Thohari" ngademinth

apakah ada cara lain tanpa memanfaatkan pivot table, pak

thanks

amin

________________________________
Dari: Mr. Kid <mr.nmkid@gmail.com>
Kepada: belajar-excel@yahoogroups.com
Dikirim: Rabu, 31 Oktober 2012 17:09
Judul: Re: [belajar-excel] proses kalkulasi terlalu lama


 
Coba manfaatkan pivot table untuk membentuk output seperti di sheet stock persediaan

Kid.

2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>


>be-exceller
>
>
>apakah data terlampir ini ada masalah, saya menghadapi masalah calculation processor dengan proses yang memakan waktu yang terlalu lama
>
>
>waktu saya input di Part no. muncul dibawah Calculation ((2 processing )) dan counter percentagenya
>
>
>terima kasih
>
>
>amin

Wed Oct 31, 2012 5:58 am (PDT) . Posted by:

"Bagus" bagus4bls

Mungkin ngambil Seperlunya saja pak

misal:
{=INDEX('Data Input'!$C$2:$C$850,MATCH(0,COUNTIF($A$2:A24,'Data Input'!$C$2:$C$850),0))}
diganti
{=INDEX('Data Input'!$C$2:$C$140,MATCH(0,COUNTIF($A$2:A24,'Data Input'!$C$2:$C$140),0))}

Bagus

----- Original Message -----
From: ngademin Thohari
To: belajar-excel@yahoogroups.com
Sent: Wednesday, October 31, 2012 5:36 PM
Subject: Bls: [belajar-excel] proses kalkulasi terlalu lama

apakah ada cara lain tanpa memanfaatkan pivot table, pak

thanks

amin

----------------------------------------------------------
Dari: Mr. Kid <mr.nmkid@gmail.com>
Kepada: belajar-excel@yahoogroups.com
Dikirim: Rabu, 31 Oktober 2012 17:09
Judul: Re: [belajar-excel] proses kalkulasi terlalu lama

Coba manfaatkan pivot table untuk membentuk output seperti di sheet stock persediaan

Kid.

2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>

be-exceller

apakah data terlampir ini ada masalah, saya menghadapi masalah calculation processor dengan proses yang memakan waktu yang terlalu lama

waktu saya input di Part no. muncul dibawah Calculation ((2 processing )) dan counter percentagenya

terima kasih

amin

Wed Oct 31, 2012 6:16 am (PDT) . Posted by:

"Mr. Kid" nmkid.family@ymail.com

Coba file terlampir.

Cara 1 : pakai 1 kolom bantu penentu nomor item berdasar part no. Syaratnya
: part no harus di-sort
Cara 0 : pakai 1 kolom bantu penyusun partname pertama, kemudian disummary
dengan pivot table.

Saya masih heran, kenapa kok masih banyak yang enggan menggunakan pivot
table. Padahal juga mudah untuk dipelajari. Jauh lebih mudah daripada
belajar formula apalagi belajar VBA.

Wassalam,
Kid.

2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>

> **
>
>
> apakah ada cara lain tanpa memanfaatkan pivot table, pak
>
> thanks
>
>
> amin
>
> ------------------------------
> *Dari:* Mr. Kid <mr.nmkid@gmail.com>
> *Kepada:* belajar-excel@yahoogroups.com
> *Dikirim:* Rabu, 31 Oktober 2012 17:09
> *Judul:* Re: [belajar-excel] proses kalkulasi terlalu lama
>
>
> Coba manfaatkan pivot table untuk membentuk output seperti di sheet stock
> persediaan
>
> Kid.
>
> 2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>
>
> **
>
> be-exceller
>
> apakah data terlampir ini ada masalah, saya menghadapi masalah calculation
> processor dengan proses yang memakan waktu yang terlalu lama
>
> waktu saya input di Part no. muncul dibawah Calculation ((2 processing ))
> dan counter percentagenya
>
> terima kasih
>
> amin
>
>
>
>
>
>

Wed Oct 31, 2012 6:22 am (PDT) . Posted by:

"ngademin Thohari" ngademinth



kalau saya jabarkan seperti ini, pak

ambil data input dari baris C2 sampai C850 diganti dengan baris C2 sampai C140, tapi di data input adalah data berjalan jadi tiap jam akan bertambah sampai data tersebut tak terbatas bukan hanya sampai 140 saja, untuk saat ini saya memakai sampai 850 baris dan itupun saya tambahkan lagi baris sampai 1500

terima kasih

amin

________________________________
Dari: Bagus <bagus@kingjim.co.id>
Kepada: belajar-excel@yahoogroups.com
Dikirim: Rabu, 31 Oktober 2012 19:56
Judul: Re: [belajar-excel] proses kalkulasi terlalu lama


 

Mungkin ngambil Seperlunya saja pak
 
misal:
{=INDEX('Data Input'!$C$2:$C$850,MATCH(0,COUNTIF($A$2:A24,'Data Input'!$C$2:$C$850),0))}
diganti
{=INDEX('Data Input'!$C$2:$C$140,MATCH(0,COUNTIF($A$2:A24,'Data Input'!$C$2:$C$140),0))}
 
 
Bagus
 
 
----- Original Message -----
>From: ngademin Thohari
>To: belajar-excel@yahoogroups.com
>Sent: Wednesday, October 31, 2012 5:36 PM
>Subject: Bls: [belajar-excel] proses kalkulasi terlalu lama
>

>apakah ada cara lain tanpa memanfaatkan pivot table, pak
>
>
>thanks
>
>
>
>
>amin
>
>
>
>________________________________
> Dari: Mr. Kid <mr.nmkid@gmail.com>
>Kepada: belajar-excel@yahoogroups.com
>Dikirim: Rabu, 31 Oktober 2012 17:09
>Judul: Re: [belajar-excel] proses kalkulasi terlalu lama
>
>

>Coba manfaatkan pivot table untuk membentuk output seperti di sheet stock persediaan
>
>Kid.
>
>
>2012/10/31 ngademin Thohari <ngademinth@yahoo.co.id>
>
>
>> 
>>be-exceller
>>
>>
>>apakah data terlampir ini ada masalah, saya menghadapi masalah calculation processor dengan proses yang memakan waktu yang terlalu lama
>>
>>
>>waktu saya input di Part no. muncul dibawah Calculation ((2 processing )) dan counter percentagenya
>>
>>
>>terima kasih
>>
>>
>>amin
>
>
>
GROUP FOOTER MESSAGE
---------------------------------------------------------------------
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....