<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Поиск первой пустой ячейки]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=13827</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=13827&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Поиск первой пустой ячейки».]]></description>
		<lastBuildDate>Thu, 07 Jun 2018 16:25:13 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125871#p125871</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (inseption86)]]></author>
			<pubDate>Thu, 07 Jun 2018 16:25:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125871#p125871</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125870#p125870</link>
			<description><![CDATA[<p>Так подставьте эту цифру в объект Cells:<br /></p><div class="codebox"><pre><code>XLSht := oExcel.ActiveSheet
oCells := XLSht.Cells

lastEmpty := oCells.(XLSht.Rows.Count, &quot;A&quot;).End(xlUp := -4162).Row + 1
oCells.(lastEmpty, &quot;A&quot;).Select</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Thu, 07 Jun 2018 16:17:59 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125870#p125870</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125869#p125869</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Первая пустая ячейка!</p>]]></description>
			<author><![CDATA[null@example.com (inseption86)]]></author>
			<pubDate>Thu, 07 Jun 2018 16:06:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125869#p125869</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125868#p125868</link>
			<description><![CDATA[<p>Так у вас в переменной aa просто цифра, что должно выделяться?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Thu, 07 Jun 2018 16:04:14 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125868#p125868</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125867#p125867</link>
			<description><![CDATA[<p><strong>teadrinker</strong> Спасибо</p><p>Это работает:<br /></p><div class="codebox"><pre><code>aa := xl.ActiveSheet.Cells(xl.ActiveSheet.Rows.count, &quot;A&quot;).end(xlup := -4162).row + 1
msgbox % aa</code></pre></div><br /><p>А почему то не выделяет:<br /></p><div class="codebox"><pre><code>aa := xl.ActiveSheet.Cells(xl.ActiveSheet.Rows.count, &quot;A&quot;).end(xlup := -4162).row + 1
aa.select</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (inseption86)]]></author>
			<pubDate>Thu, 07 Jun 2018 15:56:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125867#p125867</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125866#p125866</link>
			<description><![CDATA[<p>Наверно, имеете в виду следующую после последней непустой? Если &quot;узнать&quot;, это номер ряда, то так:<br /></p><div class="codebox"><pre><code>XLSht := oExcel.ActiveSheet
rng := XLSht.Cells(XLSht.Rows.count, &quot;A&quot;)
MsgBox, % rng.end(xlup := -4162).row + 1</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Thu, 07 Jun 2018 15:21:15 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125866#p125866</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125865#p125865</link>
			<description><![CDATA[<p>Хочу узнать первую пустую ячейку в столбце <a href="https://ibb.co/nJaCv8">https://ibb.co/nJaCv8</a> !</p>]]></description>
			<author><![CDATA[null@example.com (inseption86)]]></author>
			<pubDate>Thu, 07 Jun 2018 14:43:37 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125865#p125865</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125864#p125864</link>
			<description><![CDATA[<p>Непонятно, как связан Rows.Count и ваш вопрос. Как пустота ячейки зависит от количества рядов? Пустой может быть и самая первая ячейка. Уточните, что именно вы хотите узнать, а лучше покажите скриншот.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Thu, 07 Jun 2018 14:19:50 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125864#p125864</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Поиск первой пустой ячейки]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=125863#p125863</link>
			<description><![CDATA[<p>Добрый день! Никак не получается найти первую пустую ячейку столбца?</p><div class="codebox"><pre><code>xl.ActiveSheet.UsedRange.Rows.Count +1</code></pre></div><p>&nbsp; - это не подходит</p><div class="codebox"><pre><code>xl.Cells(xl.Rows.Count, *).End(xlUp := -4162).Offset(*, *)</code></pre></div><p> - это не подходит</p><div class="codebox"><pre><code>end := xl.Cells(2, 6).End(xlDown := -4121).Select</code></pre></div><p>. Как к этому значению добавить +1</p><p>Заранее спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (inseption86)]]></author>
			<pubDate>Thu, 07 Jun 2018 13:45:14 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=125863#p125863</guid>
		</item>
	</channel>
</rss>
