<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:podcast="https://podcastindex.org/namespace/1.0"
xmlns:rawvoice="https://blubrry.com/developer/rawvoice-rss/"

	>
<channel>
	<title>
	Comments for Chandoo.org &#8211; Learn Excel, Power BI &amp; Charting Online	</title>
	<atom:link href="https://chandoo.org/wp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://chandoo.org/wp/</link>
	<description>Fresh Excel Tips, Power BI, Power Pivot, Power Query, Tricks, Charts, Tutorials, Downloads, Dashboards and Visualization Showcase for your Inspiration and Productivity</description>
	<lastBuildDate>Mon, 04 May 2026 14:32:05 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on Create a Combination Chart, Add Secondary Axis in Excel [15 Second Tutorial] by Ankur Sharma		</title>
		<link>https://chandoo.org/wp/secondary-axis-combination-charts-howto/#comment-2669136</link>

		<dc:creator><![CDATA[Ankur Sharma]]></dc:creator>
		<pubDate>Mon, 04 May 2026 14:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://chandoo.org/wp/?p=2204#comment-2669136</guid>

					<description><![CDATA[Hi Chandoo,

Fantastic Challenge. Thank You ??

My answer to Q.2 is 48 . . NOT 49.

A.1)
LET(emp, ISNUMBER(XMATCH(trainings[EMP ID], staff[EMP ID])),
trng, ISNUMBER(XMATCH(trainings[COURSE ID], {&quot;CM101&quot;,&quot;CC101&quot;,&quot;EAT101&quot;})),
comp, trainings[PASS/FAIL] = &quot;Pass&quot;,
a, GROUPBY(trainings[EMP ID], emp * trng * comp, SUM, , 0, , emp),
result, SUM(--(CHOOSECOLS(a, 2) = 3)),
result)

A.2)
LET(emp, ISNUMBER(XMATCH(trainings[EMP ID], staff[EMP ID])),
trng, ISNUMBER(XMATCH(trainings[COURSE ID], {&quot;CM101&quot;,&quot;CC101&quot;,&quot;EAT101&quot;})),
comp, trainings[PASS/FAIL] = &quot;Pass&quot;,
a, GROUPBY(trainings[EMP ID], emp * trng * comp, SUM, , 0, , emp),
result, SUM(--(CHOOSECOLS(a, 2) &#062;= 1)),
result)

A.3)
SUM(--(NOT(ISNUMBER(XMATCH(staff[EMP ID], trainings[EMP ID])))))

Best Wishes!]]></description>
			<content:encoded><![CDATA[<p>Hi Chandoo,</p>
<p>Fantastic Challenge. Thank You ??</p>
<p>My answer to Q.2 is 48 . . NOT 49.</p>
<p>A.1)<br />
LET(emp, ISNUMBER(XMATCH(trainings[EMP ID], staff[EMP ID])),<br />
trng, ISNUMBER(XMATCH(trainings[COURSE ID], {"CM101","CC101","EAT101"})),<br />
comp, trainings[PASS/FAIL] = "Pass",<br />
a, GROUPBY(trainings[EMP ID], emp * trng * comp, SUM, , 0, , emp),<br />
result, SUM(--(CHOOSECOLS(a, 2) = 3)),<br />
result)</p>
<p>A.2)<br />
LET(emp, ISNUMBER(XMATCH(trainings[EMP ID], staff[EMP ID])),<br />
trng, ISNUMBER(XMATCH(trainings[COURSE ID], {"CM101","CC101","EAT101"})),<br />
comp, trainings[PASS/FAIL] = "Pass",<br />
a, GROUPBY(trainings[EMP ID], emp * trng * comp, SUM, , 0, , emp),<br />
result, SUM(--(CHOOSECOLS(a, 2) &gt;= 1)),<br />
result)</p>
<p>A.3)<br />
SUM(--(NOT(ISNUMBER(XMATCH(staff[EMP ID], trainings[EMP ID])))))</p>
<p>Best Wishes!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Find out if a number has repetitive digits [formula homework] by MildPeril		</title>
		<link>https://chandoo.org/wp/number-has-repetitive-digits-formula/#comment-2662305</link>

		<dc:creator><![CDATA[MildPeril]]></dc:creator>
		<pubDate>Wed, 29 Apr 2026 14:20:49 +0000</pubDate>
		<guid isPermaLink="false">https://chandoo.org/wp/?p=11882#comment-2662305</guid>

					<description><![CDATA[RegEx solutions for Excel 365:

Any duplicates
=REGEXTEST(A1, &quot;(\d).*(\g1)&quot;)

Any adjacent duplicates
=REGEXTEST(A1, &quot;(\d)(\g1)&quot;)

\d -- Match any digit 0-9
.* -- Match any text of any length
() -- Capture group (allows a match to be referenced later)
(\g1) -- Match whatever was matched in capture group 1 (i.e., whatever digit 0-9 was matched, try to match it again)

Feels like cheating compared to the creative solutions offered by others!]]></description>
			<content:encoded><![CDATA[<p>RegEx solutions for Excel 365:</p>
<p>Any duplicates<br />
=REGEXTEST(A1, "(\d).*(\g1)")</p>
<p>Any adjacent duplicates<br />
=REGEXTEST(A1, "(\d)(\g1)")</p>
<p>\d -- Match any digit 0-9<br />
.* -- Match any text of any length<br />
() -- Capture group (allows a match to be referenced later)<br />
(\g1) -- Match whatever was matched in capture group 1 (i.e., whatever digit 0-9 was matched, try to match it again)</p>
<p>Feels like cheating compared to the creative solutions offered by others!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Hui’s Excel Report Printer by Arpan Chakraborty		</title>
		<link>https://chandoo.org/wp/hui%e2%80%99s-excel-report-printer/#comment-2619572</link>

		<dc:creator><![CDATA[Arpan Chakraborty]]></dc:creator>
		<pubDate>Sat, 28 Mar 2026 09:18:41 +0000</pubDate>
		<guid isPermaLink="false">http://chandoo.org/wp/?p=3738#comment-2619572</guid>

					<description><![CDATA[Possible Cash Out
3500
2500
2000
3500
3500
2000
1500
2500
5000
2000


for IF formula i am geting this payout,here is my formula

=IF($C4=0%,1500,IF(AND($C4&#062;0%,$C4&#060;3%),1000,0))+IF(IF($E4&#060;500,1000,0)=1000,1000,IF($F4=1,1000,0)+IF($D4&#062;=98%,1500,IF($D4&#062;=96%,500,0))+IF(AND($C4=96%,OR($E4&#060;500,$F4&#060;560),$G4=1),5000,0)

but for EMP0002 my answer is 2500 buy your answer is 2000.]]></description>
			<content:encoded><![CDATA[<p>Possible Cash Out<br />
3500<br />
2500<br />
2000<br />
3500<br />
3500<br />
2000<br />
1500<br />
2500<br />
5000<br />
2000</p>
<p>for IF formula i am geting this payout,here is my formula</p>
<p>=IF($C4=0%,1500,IF(AND($C4&gt;0%,$C4&lt;3%),1000,0))+IF(IF($E4&lt;500,1000,0)=1000,1000,IF($F4=1,1000,0)+IF($D4&gt;=98%,1500,IF($D4&gt;=96%,500,0))+IF(AND($C4=96%,OR($E4&lt;500,$F4&lt;560),$G4=1),5000,0)</p>
<p>but for EMP0002 my answer is 2500 buy your answer is 2000.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Power Query Tutorial &#8211; What is it, How to use, Full examples, Tips &#038; Tricks by Sanath Dissanayake		</title>
		<link>https://chandoo.org/wp/power-query-tutorial/#comment-2609040</link>

		<dc:creator><![CDATA[Sanath Dissanayake]]></dc:creator>
		<pubDate>Fri, 20 Mar 2026 16:49:14 +0000</pubDate>
		<guid isPermaLink="false">https://chandoo.org/wp/?p=15048#comment-2609040</guid>

					<description><![CDATA[Hi Chandoo,

Thank you very much for your great effort to help us learn these topics.

I found the content so useful and valuable.
Thank you again for sharing your knowledge.

Regards.

Sanath.]]></description>
			<content:encoded><![CDATA[<p>Hi Chandoo,</p>
<p>Thank you very much for your great effort to help us learn these topics.</p>
<p>I found the content so useful and valuable.<br />
Thank you again for sharing your knowledge.</p>
<p>Regards.</p>
<p>Sanath.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Sand Pendulums &#8211; Lissajous Patterns in Excel by Rebecca		</title>
		<link>https://chandoo.org/wp/sand-pendulums-lissajous-patterns-in-excel/#comment-2606732</link>

		<dc:creator><![CDATA[Rebecca]]></dc:creator>
		<pubDate>Thu, 19 Mar 2026 01:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://chandoo.org/wp/?p=11550#comment-2606732</guid>

					<description><![CDATA[Hi, this is a great workbook. is there instructions on how to edit or change the icon and can we change the colour?]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a great workbook. is there instructions on how to edit or change the icon and can we change the colour?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Write a formula to get Department Budget for a Month [Homework] by Shazia		</title>
		<link>https://chandoo.org/wp/department-budget-problem/#comment-2598470</link>

		<dc:creator><![CDATA[Shazia]]></dc:creator>
		<pubDate>Wed, 11 Mar 2026 05:41:47 +0000</pubDate>
		<guid isPermaLink="false">https://chandoo.org/wp/?p=15365#comment-2598470</guid>

					<description><![CDATA[=XLOOKUP(D14:D18,budgets[Department],budgets[Apr])]]></description>
			<content:encoded><![CDATA[<p>=XLOOKUP(D14:D18,budgets[Department],budgets[Apr])</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Write a formula to get Department Budget for a Month [Homework] by Shazia		</title>
		<link>https://chandoo.org/wp/department-budget-problem/#comment-2598454</link>

		<dc:creator><![CDATA[Shazia]]></dc:creator>
		<pubDate>Wed, 11 Mar 2026 05:35:27 +0000</pubDate>
		<guid isPermaLink="false">https://chandoo.org/wp/?p=15365#comment-2598454</guid>

					<description><![CDATA[Department	Marketing
Month	Apr
	
Budget Amount	41500]]></description>
			<content:encoded><![CDATA[<p>Department	Marketing<br />
Month	Apr</p>
<p>Budget Amount	41500</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
