creation of dashboard in sharepoint 2007

旧街凉风 提交于 2019-12-08 06:09:02

问题


For the creation of a dashboard I need to find out the way to get the count of the items in a field of a list. How to get the same in real time?

Let’s say I have a list with the following fields;

Quarter >>>> Batch# >>>>>> In field/Packed/Shipped

For eg, if the entries for the first list is as given below;

Quarter >>>>>>>>>>>>>>>>> Batch# >>>>>>>>>>>>>>>>>>>>> Status

Q1 ------------------------------------B1------------------------------------ In the field

Q1 ------------------------------------B2 ------------------------------------In the field

Q1------------------------------------B1 ------------------------------------Packed

Q1------------------------------------B2 ----------------------------------- Shipped

Q1------------------------------------B2------------------------------------ Shipped

NOW, I need to get a dashboard list where in it give the below result;

It should look like;

Status >>>>>>>>>>>>>>>>> Batch 1 >>>>>>>>>>>>>>>>> Batch 2

In the field ------------------------1----------------------------------1

Packed ------------------------- 1-----------------------------------0

Shipped------------------------- 0----------------------------------2

Please help upon how to create a dashboard like the above.


回答1:


This type of operation is generically called Cross Tabulation or often 'Pivot' operations.

You may be able to do this using SharePoint Designer, the Data View Web Part (dvwp) and some very fancy XSLT - but its not going to be easy. This is a great start on the DVWP.

  • EUSP - Data View Web Part - the basics

  • And then the series by Jim Bob Howard - Extending the Data View web part

Otherwise I think you're looking at developing a custom web part.

Alternatively there is a commercial web part that will allow you to do cross tabulation and pivot operations on data from SharePoint lists (disclaimer - my own company sells this, but its very relevant to the question asked).



来源:https://stackoverflow.com/questions/4152822/creation-of-dashboard-in-sharepoint-2007

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!