Skip to content

Marc D Anderson's Blog

  • Home
  • Speaking
  • Books
  • About
  • Contact
  • Sympraxis Consulting
  • Privacy Policy
Facebook X Linkedin Github
Marc D Anderson's Blog
  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 10 – <xsl:choose>

    ByMarc D Anderson February 23, 2010February 5, 2013
    This entry is part 10 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:choose> Like <xsl:if>, but with multiple possibilities, more like if-then-else. <xsl:when> Used within <xsl:choose> as a conditional test.  If the test is true, then the contained code is executed and the <xsl:choose> is exited. <xsl:otherwise> Used within <xsl:choose> as the “fall-back” condition. If none of the prior <xsl:when>s have been executed, the…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 10 – <xsl:choose>Continue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 9 – <xsl:if>

    ByMarc D Anderson February 18, 2010February 5, 2013
    This entry is part 9 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:if> A single conditional test. If the test is true, then the contained code is executed. <xsl:if> is one of the simple workhorses in the Data View Web Part (DVWP) XSL arsenal.  Its entire goal in life is to determine whether the code it contains is executed or not. Looking at our…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 9 – <xsl:if>Continue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 8 – <xsl:sort>

    ByMarc D Anderson February 16, 2010February 5, 2013
    This entry is part 8 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:sort> Used within an <xsl:for-each> to determine the sort order in which the nodeset (group of rows) are processed. <xsl:sort> allows you to change the default sort order of the items as they are displayed in a Data View Web Part (DVWP).  By default (in almost all cases), the items will be…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 8 – <xsl:sort>Continue

  • SharePoint

    My HP Envy 15 Monster Laptop Specs

    ByMarc D Anderson February 16, 2010May 29, 2010

    I’ve been tweeting and crowing about how awesome my new HP Envy 15 laptop is.  There are some good photos of the laptop and its packaging over at notebooks.com (this photo is borrowed from the site).  Quite a few people have asked what I put in it, so I thought I’d post the specs here. …

    Read More My HP Envy 15 Monster Laptop SpecsContinue

  • SharePoint

    SharePoint Technology Conference (SPTechCon) Wrap Up

    ByMarc D Anderson February 14, 2010July 12, 2022

    Where to begin? I can’t believe that I haven’t gone to any SharePoint conferences before. It was a tremendous experience on many levels. First and foremost, I was able to meet many of the SharePoint folks I’ve been tweeting with and following on the Interwebs over the last few years.  It’s one thing to think you know someone…

    Read More SharePoint Technology Conference (SPTechCon) Wrap UpContinue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 7 – <xsl:for-each>

    ByMarc D Anderson February 11, 2010February 5, 2013
    This entry is part 7 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:for-each> A way to iterate over a nodeset (group of rows). Once you have a rowset like the $Rows I talked about in the prior article about <xsl:variable>, you’ll want to do something with it. If you’ve ever used a report writer or created reports in an application like Microsoft Access, the…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 7 – <xsl:for-each>Continue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 6 – <xsl:variable>

    ByMarc D Anderson February 9, 2010February 5, 2013
    This entry is part 6 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:variable> A value you create for use within a template which is only defined within the scope of that template. Parameters and variables are used interchangeably, but how you create them is a bit different. While a parameter is a value which you expect to receive, a variable is something which you…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 6 – <xsl:variable>Continue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 5 – <xsl:param>

    ByMarc D Anderson February 5, 2010February 5, 2013
    This entry is part 5 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:param> A value you’ve passed into a template with <xsl:with-param>. You need to have an <xsl:param> at the top of the template for each value you expect to be passed into it. I talked in the last post about passing values into templates using <xsl:with-param>. Whenever you pass these values, you need…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 5 – <xsl:param>Continue

  • SharePoint

    Microsoft Excel Error: "There was a problem sending the command to the program."

    ByMarc D Anderson February 4, 2010July 21, 2011

    For the last three years or more, I’ve been living with a little annoyance with Microsoft Excel.  It’s one of those things that’s just not quite annoying enough to get to the bottom of, and I figured it was some obscure registry setting I’d never find and must be something odd about my laptop setup…

    Read More Microsoft Excel Error: "There was a problem sending the command to the program."Continue

  • SharePoint

    Unlocking the Mysteries of Data View Web Part XSL Tags – Part 4 – <xsl:with-param>

    ByMarc D Anderson February 4, 2010February 5, 2013
    This entry is part 4 of 21 in the series Unlocking the Mysteries of Data View Web Part XSL Tags

    Cross-posted from EndUserSharePoint.com… <xsl:with-param> You use this with <xsl:call-template> when you want to pass a value into a template, usually a value that varies. Once you’ve laid down the foundation and framed the rooms with <xsl:template> and <xsl:call-template> (one of my goals in this series is to mix as many metaphors as possible), you can…

    Read More Unlocking the Mysteries of Data View Web Part XSL Tags – Part 4 – <xsl:with-param>Continue

Page navigation

Previous PagePrevious 1 … 74 75 76 77 78 … 115 Next PageNext

Need help with the SharePoint Framework (SPFx), Learning Pathways, or PnP Modern Search? Our 1-Hour Jumpstarts may be for you!

Recent Comments

  • Michael Hanes on Connecting to Multiple Tenant Sites in a foreach Loop with PnP.PowerShell – Efficiently
  • Marija on Dear Microsoft: Stop It with Copilot, Already
  • Company Branding on Brand Kits in Microsoft 365: Two Features, One Goal — and Why You Should Care About Both
  • Marc D Anderson on The Trick to Using Lookup Columns with Content Types from the Content Type Hub
  • Colin Gardner on The Trick to Using Lookup Columns with Content Types from the Content Type Hub

Series

  • SharePoint Online Search Isn't Displaying What I Expect (2)
  • Sympraxis Client Side Development Pipeline (2)
  • Looping Through Content in a SharePoint 2013 Site Workflow (4)
  • Single-Page Applications (SPAs) in SharePoint Using SPServices (4)
  • SPServices Stories (21)
  • Moving from SPServices to REST (6)
  • Create a Simple SharePoint 2013 Employee Directory on Office365 (5)
  • Unlocking the Mysteries of Data View Web Part XSL Tags (21)

© 2026 Marc D Anderson's Blog - WordPress Theme by Kadence WP

Scroll to top
  • Home
  • Speaking
  • Books
  • About
  • Contact
  • Sympraxis Consulting
  • Privacy Policy