Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
David Schurmann
Starting Member
3 Posts |
Posted - 2008-09-09 : 20:13:31
|
Hey Peoples,Hope this makes sense my apologies if it does not.This is the statement I am using to create the table. The only catch is that there are two values in this case ID's that need to be seen in the pivot table.TRANSFORM First(Issues.ID) AS SumOfIDSELECT Issues.ImpactFROM IssuesGROUP BY Issues.ImpactPIVOT Issues.Probability;What I would like to see is some thing like thisimpact 1 2 3 4 a 1,2 b 3 5cd 4abcd represent the impact and 1234 = probability.Any ideas? |
|
|
|
|