<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[מילוי תאריך רץ בטופס מאקרו לטבלה]]></title><description><![CDATA[<p dir="auto">כפי שרואים בתמונה<br />
<img src="/assets/uploads/files/1538565809352-8c375c4a-448e-4ada-955b-075eca936ef4-image.png" alt="0_1538565809506_8c375c4a-448e-4ada-955b-075eca936ef4-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">מה הפקודה המתאימה, שלפי המס' צקים שרשום, הוא ימשיך למלא בשורות הנוספות, כחודשים עוקבים, את התאריך הבא, והסכום שצויין בטופס</p>
<p dir="auto">וכן צריך משהו נוסף, שאם אני מוסיף עוד, שימלא בתאים הריקים הבאים, ולא על חשבון התאים הקיימים, כלומר שיוסיף שורות חדשות</p>
<p dir="auto">אשמח לכל עזרה וייעוץ, או למילים מתאימות לחיפוש גוגל</p>
]]></description><link>https://tchumim.com/topic/3596/מילוי-תאריך-רץ-בטופס-מאקרו-לטבלה</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 06:03:52 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/3596.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Oct 2018 11:27:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to מילוי תאריך רץ בטופס מאקרו לטבלה on Tue, 09 Oct 2018 22:03:57 GMT]]></title><description><![CDATA[<p dir="auto">עקב שאני רוצה לתרום לפורום בדרכים שאני יכול<br />
אני מביא את התשובה שקיבלתי בפורום אחר</p>
<pre><code>

Private Sub CommandButton1_Click()


Dim ws As Worksheet, LRow as Long, i as Integer
Set ws = Worksheets("sheets")

LRow = ws.Range("A" &amp; ws.Rows.Count).End(xlUp).Offset(1, 0).Row

ws.Range("A" &amp; LRow) = Me.TextBox2
ws.Range(ws.Cells(LRow, 2), ws.Cells(LRow + Me.TextBox1, 2)) = Me.TextBox3

For i = (LRow + 1) To (LRow + Me.TextBox1 - 1)
    ws.Range("A" &amp; i ) = DateAdd("m", 1, ws.Range("A" &amp; i -1))
Next i

Unload Me

End Sub
</code></pre>
<p dir="auto">אם מישהו יצטרך...</p>
]]></description><link>https://tchumim.com/post/36916</link><guid isPermaLink="true">https://tchumim.com/post/36916</guid><dc:creator><![CDATA[searchnicks]]></dc:creator><pubDate>Tue, 09 Oct 2018 22:03:57 GMT</pubDate></item><item><title><![CDATA[Reply to מילוי תאריך רץ בטופס מאקרו לטבלה on Wed, 03 Oct 2018 14:52:36 GMT]]></title><description><![CDATA[<p dir="auto">אשמח לפחות למילים מתאימות לחיפוש גוגל</p>
]]></description><link>https://tchumim.com/post/36454</link><guid isPermaLink="true">https://tchumim.com/post/36454</guid><dc:creator><![CDATA[searchnicks]]></dc:creator><pubDate>Wed, 03 Oct 2018 14:52:36 GMT</pubDate></item></channel></rss>