The column on the far right is what I'm trying to add to my report. Is this possible to do without modifying the query to use something like Unpivot?
Step X Step W Step A Step B Step Y Last Step
---------------------------------------------------------------------
1/21/2013 1/24/2013 1/3/2013 1/5/2013 1/7/2013 Step W
This is a step in the right direction, but it appears to only work in SSRS 2008: http://www.bigator.com/2012/04/26/spothighlight-minimum-and-maximum-values-in-each-row-in-matrix-report-in-ssrs/
You can use the
UNPIVOT
function and aCROSS APPLY
to get this:See SQL Fiddle with Demo