<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>spreadsheets on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/spreadsheets/</link>
    <description>Recent content in spreadsheets on S Anand</description>
    <generator>Hugo -- 0.156.0</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 06 May 2023 04:53:37 +0000</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/spreadsheets/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>My first LAMBDA in Excel</title>
      <link>https://www.s-anand.net/blog/my-first-lambda-in-excel/</link>
      <pubDate>Sat, 06 May 2023 04:53:37 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/my-first-lambda-in-excel/</guid>
      <description>&lt;p&gt;&lt;img alt=&#34;My first LAMBDA in Excel&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/image-75.webp&#34;&gt;&lt;/p&gt;
&lt;p&gt;Ever since Excel introduced the LAMBDA function, I&#39;ve been itching to use it in real life. I got my first chance today.&lt;/p&gt;
&lt;p&gt;We track the skill index of our different teams (consulting, analytics, technology, etc.) like this:&lt;/p&gt;
&lt;figure class=&#34;wp-block-table&#34;&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Team&lt;/th&gt;&lt;th class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;Skill Index&lt;/th&gt;&lt;th class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;Apr-23&lt;/th&gt;&lt;th class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;May-23&lt;/th&gt;&lt;th class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;Jun-23&lt;/th&gt;&lt;th class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;Jul-23&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Consulting&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;0%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;0%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Analytics&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;33%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;33%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Technology&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;72%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;72%&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;etc.&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;td class=&#34;has-text-align-right&#34; data-align=&#34;right&#34;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/figure&gt;
&lt;p&gt;The &#34;Skill Index&#34; column should pick the LAST value. If Apr-23 is filled, use that. But if May-23 is also filled, use that.&lt;/p&gt;
&lt;p&gt;I needed something like a &lt;code&gt;=LASTVALUE(range)&lt;/code&gt; formula. But none exists.&lt;/p&gt;
&lt;p&gt;A good alternative is &lt;a href=&#34;https://exceljet.net/formulas/get-value-of-last-non-empty-cell&#34;&gt;this formula to get the last non-empty cell&lt;/a&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code class=&#34;language-excel&#34; data-lang=&#34;excel&#34;&gt;=LOOKUP(2,1/(range&amp;lt;&amp;gt;&amp;#34;&amp;#34;),range)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;So, I followed the &lt;a href=&#34;https://support.microsoft.com/en-us/office/lambda-function-bd212d27-1cd1-4321-a34a-ccbf254b8b67&#34;&gt;instructions&lt;/a&gt; to create a function in the Name Manager (Ctrl+F3)&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/image-75.webp&#34;&gt;&lt;/p&gt;
&lt;p&gt; ... and simply fill in &lt;code&gt;=LASTVALUE(H6:S6)&lt;/code&gt; and the like in the &#34;Skills Index&#34; cell.&lt;/p&gt;
&lt;p&gt;The LOOKUP formula is confusing. My aim is to confuse our team less. But I wonder if they&#39;ll start Google-ing for this LASTVALUE formula no one ever heard of, and get more confused 🤔.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>The virtues of a second screen</title>
      <link>https://www.s-anand.net/blog/the-virtues-of-a-second-screen/</link>
      <pubDate>Sat, 22 Apr 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/the-virtues-of-a-second-screen/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.nytimes.com/2006/04/20/technology/20basics.html&#34;&gt;The virtues of a second screen&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;So now, while I am editing this article on my main screen, the screen beside it shows the outline or earlier draft I am working from &amp;ndash; and, sometimes, Web sites or other documents I keep referring to.&lt;/p&gt;
&lt;p&gt;When I edit photos, the second screen lets me compare the copy I am working on with the original, or shows tool palettes and thumbnails of other images, and I can blow up panoramic shots for closer viewing (though with a bar down the middle, like the central pillar of an old car&amp;rsquo;s windshield).&lt;/p&gt;
&lt;p&gt;When I am shopping on the Web, my two screens let me compare products.&lt;/p&gt;
&lt;p&gt;When I work on tables or spreadsheets, I can see all the columns at once. When I expect important messages, I keep my e-mail program open on the side monitor while I work on something else.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Umasuthan&lt;/strong&gt; &lt;em&gt;22 Apr 2006 5:44 pm&lt;/em&gt;:
With so much dependency on IT in our day-to-day work, as the author points out even 2 screens wouldn&amp;rsquo;t be sufficient. True. â€˜Ease of useâ€™ has become a major issue in IT systems. That reminds me. Did u check the &amp;lsquo;Reveal&amp;rsquo; and &amp;lsquo;Firefox Showcase&amp;rsquo; plug-ins for Firefox?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Saurabh&lt;/strong&gt; &lt;em&gt;22 Apr 2006 6:12 pm&lt;/em&gt;:
Does anyone use Maxthon also?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;23 Apr 2006 4:37 pm&lt;/em&gt;:
First time I&amp;rsquo;d heard of it, actually.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ravi&lt;/strong&gt; &lt;em&gt;24 Apr 2006 2:00 am&lt;/em&gt;:
anand the links ask for registration??!!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;24 Apr 2006 6:46 am&lt;/em&gt;:
Yeah, but it&amp;rsquo;s a free registration. &lt;a href=&#34;https://www.BugMeNot.com&#34;&gt;www.BugMeNot.com&lt;/a&gt; might be able to provide you with a username and password.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>How I buy gadgets</title>
      <link>https://www.s-anand.net/blog/how-i-buy-gadgets/</link>
      <pubDate>Sun, 26 Mar 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/how-i-buy-gadgets/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m a cautious gadget freak. I love buying gadgets, but think a lot before buying them. Invariably, I use spreadsheets to help me decide. I try to buy only those gadgets that are right &lt;em&gt;for me&lt;/em&gt; at the cheapest possible price, and I look at two things: &lt;strong&gt;features based on usage&lt;/strong&gt; and &lt;strong&gt;breakeven&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Usage-driven buying&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I pick the features I want based on my usage. For example, when I bought my first mobile, I listed the my most likely uses for the phone:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;rsquo;m in the car (e.g. 2 hr drive to airport), and want to catch up&lt;/li&gt;
&lt;li&gt;Emergency calls (means, carry the phone always)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So I need high battery life (at least 2 hours). I need low weight, if I&amp;rsquo;m going to carry it around. I &lt;em&gt;don&amp;rsquo;t&lt;/em&gt; need colour display or MMS for my usage pattern. Then I ran through all available mobile phone options, filtered them against my criteria, and picked the cheapest (Nokia 3310).&lt;/p&gt;
&lt;p&gt;Another example was my digital camera. The reason I wanted one was:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I can take a lot more photographs and print only those I want&lt;/li&gt;
&lt;li&gt;For low light shots, take multiple snaps, so at least one will be OK&lt;/li&gt;
&lt;li&gt;I can just take one snap and print it, and not have to complete a roll&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So my camera should be light (to carry around and take lots of snaps), have a high ISO rating and flash (to work well in low light), and needn&amp;rsquo;t have much memory (I transfer it to my laptop pretty quickly).&lt;/p&gt;
&lt;p&gt;Having identified such features, I compared models (Internet / visit shops) in 2002.&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Product&lt;/th&gt;
          &lt;th&gt;Price&lt;/th&gt;
          &lt;th&gt;Size&lt;/th&gt;
          &lt;th&gt;Flash&lt;/th&gt;
          &lt;th&gt;Mpx&lt;/th&gt;
          &lt;th&gt;Zoom&lt;/th&gt;
          &lt;th&gt;Mem&lt;/th&gt;
          &lt;th&gt;Comment&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Kodak DC3400&lt;/td&gt;
          &lt;td&gt;16500&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;2x&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;No &amp;ndash; 2x zoom not enough&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Canon S10&lt;/td&gt;
          &lt;td&gt;20000&lt;/td&gt;
          &lt;td&gt;Small&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;2x&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;No &amp;ndash; 2x zoom not enough&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Sony DSC P50&lt;/td&gt;
          &lt;td&gt;20000&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;3X&lt;/td&gt;
          &lt;td&gt;4MB&lt;/td&gt;
          &lt;td&gt;No &amp;ndash; too little memory&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Nikon 775&lt;/td&gt;
          &lt;td&gt;19000&lt;/td&gt;
          &lt;td&gt;Small&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;3x&lt;/td&gt;
          &lt;td&gt;8MB&lt;/td&gt;
          &lt;td&gt;OK&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Fuji FinePix 2600&lt;/td&gt;
          &lt;td&gt;15000&lt;/td&gt;
          &lt;td&gt;OK&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;3x&lt;/td&gt;
          &lt;td&gt;16MB&lt;/td&gt;
          &lt;td&gt;OK&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Olympus D-230&lt;/td&gt;
          &lt;td&gt;15000&lt;/td&gt;
          &lt;td&gt;Small&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;2&lt;/td&gt;
          &lt;td&gt;None&lt;/td&gt;
          &lt;td&gt;16MB&lt;/td&gt;
          &lt;td&gt;No &amp;ndash; No zoom&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Nikon 885&lt;/td&gt;
          &lt;td&gt;27500&lt;/td&gt;
          &lt;td&gt;OK&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;3&lt;/td&gt;
          &lt;td&gt;3x&lt;/td&gt;
          &lt;td&gt;16MB&lt;/td&gt;
          &lt;td&gt;Too little manual control&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Canon G1&lt;/td&gt;
          &lt;td&gt;40000&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;3&lt;/td&gt;
          &lt;td&gt;3X&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Too expensive&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Sony DSC S85&lt;/td&gt;
          &lt;td&gt;40000&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;4&lt;/td&gt;
          &lt;td&gt;3x&lt;/td&gt;
          &lt;td&gt;16MB&lt;/td&gt;
          &lt;td&gt;Slow shutter&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Canon G2&lt;/td&gt;
          &lt;td&gt;45000&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;4&lt;/td&gt;
          &lt;td&gt;3X&lt;/td&gt;
          &lt;td&gt;16MB&lt;/td&gt;
          &lt;td&gt;Too expensive.&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Olympus C4040&lt;/td&gt;
          &lt;td&gt;45000&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Y&lt;/td&gt;
          &lt;td&gt;4&lt;/td&gt;
          &lt;td&gt;3x&lt;/td&gt;
          &lt;td&gt;&lt;/td&gt;
          &lt;td&gt;Too expensive&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;I finally picked the Fuji FinePix 2600.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Breakeven&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I had a normal camera. Would a digital camera be economically worth it? For a normal camera, the roll costs Rs 2.5 (Rs 90 / 36 shots), developing costs Rs 2.8 (Rs 100 / 36 shots), and each print costs Rs 5. Total cost per photo: Rs 10.3. I don&amp;rsquo;t need prints, I see pictures on the computer. The digital camera cost me Rs 20,000 including customs duty. So I break even when I take about 2,000 pictures. That sounded feasible, so I switched to digital in 2002. (I&amp;rsquo;ve taken about 2,800 snaps since.)&lt;/p&gt;
&lt;p&gt;For similar reasons, I also decided I &lt;strong&gt;didn&amp;rsquo;t&lt;/strong&gt; need a colour printer. Given my expected usage, it would have cost me Rs 34 for a single 4&amp;quot; x 6&amp;quot; colour photo printout. I could get the same at a shop for Rs 8.&lt;/p&gt;
&lt;p&gt;Recently, I bought a DVD writer. DVDs cost about the same as CDs in bulk. (I bought a 100 DVD pack for 14 pounds, and 100 CDs for about the same.) A DVD stores 6 times as much as a CD. So for every DVD I burn, I save the cost of 5 CDs, about 70 pence. A DVD writer cost 50 pounds. So after burning about 70 DVDs, I&amp;rsquo;d break even. Once I&amp;rsquo;m through with my pack of 100 DVDs, I&amp;rsquo;m guaranteed breakeven. (I&amp;rsquo;ve burned about 25 DVDs till date.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tracking&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t stop there. After buying, I track my usage. Where I&amp;rsquo;ve done a breakeven, I try to track quantitatively. Otherwise, I track my usage pattern (high / medium / low). So far, my best return-on-investment has been on my webcam and mic, followed by my digital camera, CD writer, video camera and DVD writer. The worst have been my TV tuner card (I didn&amp;rsquo;t really record many movies), and my second mobile phone (turned out I didn&amp;rsquo;t really use GPRS).&lt;/p&gt;
&lt;p&gt;I once started doing this sort of analysis for my clothes, but stopped&amp;hellip; maybe I was carrying this a bit too far&amp;hellip;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Dhar&lt;/strong&gt; &lt;em&gt;28 Mar 2006 8:24 am&lt;/em&gt;:
You probably know it already, but using a camera at high ISO rating will give you grainy pics. Instead try using low shutter speeds, low aperture with a good tripod.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dhar&lt;/strong&gt; &lt;em&gt;28 Mar 2006 8:25 am&lt;/em&gt;:
&lt;blockquote&gt;
&lt;p&gt;I once started doing this sort of analysis for my clothes, but stopped.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dhar&lt;/strong&gt; &lt;em&gt;28 Mar 2006 8:26 am&lt;/em&gt;:
Thank God for that! Using a spreadsheet for analysing what clothes to purchases! You are an uber-geek.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Arun&lt;/strong&gt; &lt;em&gt;28 Mar 2006 11:19 am&lt;/em&gt;:
Holy cow!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;28 Mar 2006 1:39 pm&lt;/em&gt;:
Yeah, I stick to low ISO with a pocket tripod these days. I do wish there were a camera that would work at night without a tripod!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ashwin&lt;/strong&gt; &lt;em&gt;28 Mar 2006 6:57 pm&lt;/em&gt;:
Olympus or Sony cybershot 7.2 MP(DSC P200) which is better? can any one suggest which is an all rounder in performance?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dhar&lt;/strong&gt; &lt;em&gt;4 Apr 2006 5:51 am&lt;/em&gt;:
For camera&amp;rsquo;s that work at night, try those with Optical Image Stabilizers. I believe Lumix is one of the inexpensive cameras that features OIS.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Philip Wilkinson&lt;/strong&gt; &lt;em&gt;27 Nov 2006 6:33 pm&lt;/em&gt;:
wow - that&amp;rsquo;s impressive. I think you qualify for being a Crowdstorm Elite member if you&amp;rsquo;re interested!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/blog/eating-more-for-less/&#34;&gt;Eating more for less | s-anand.net&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;19 May 2011 7:26 pm&lt;/em&gt; &lt;em&gt;(pingback)&lt;/em&gt;:
[&amp;hellip;] that add less calories per gram. Usually, when browsing stores, I check these manually. But being a geek, I figured there’s an easier [&amp;hellip;]&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Excel shortcuts</title>
      <link>https://www.s-anand.net/blog/excel-shortcuts/</link>
      <pubDate>Fri, 08 Apr 2005 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/excel-shortcuts/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://office.microsoft.com/en-us/assistance/HP052037811033.aspx&#34;&gt;Excel shortcut keys&lt;/a&gt; &lt;a href=&#34;http://www.automateexcel.com/&#34;&gt;via AutomateExcel&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
  </channel>
</rss>
