我想生成一张考勤表.表格/表格中的“列数"大约为35列,其中包括员工编号,姓名,总出勤率(就像出勤登记册一样). [英] I would like to generate attendance sheet. The Number of columns in the grid/table will be around 35 columns along with employee empid, Name, Total Attendance (it is just like attendance register).

查看:92
本文介绍了我想生成一张考勤表.表格/表格中的“列数"大约为35列,其中包括员工编号,姓名,总出勤率(就像出勤登记册一样).的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想生成出勤表.表格/表格中的列数"将大约为35列,以及员工的身份,姓名,总出勤率(就像出勤登记册一样).

I would like to generate attendance sheet. The Number of columns in the grid/table will be around 35 columns along with employee empid, Name, Total Attendance (it is just like attendance register).

S.No Name JobId S/O  1  2  3  4..........30 31 Tworkingday NoofAttendance 
1     AB   A1	   B   P  A  P  P..........P  P	    31		30
2     BC   A2	   C   P  A  P  P..........P  A	    31		29
3     CD   A3	   D   P  A  P  P..........P  P	    31		30
4     EF   A3	   E   P  P  P  P..........P  P	    31		31



[edit]已添加代码块-OriginalGriff [/edit]

我有两个桌子.



[edit]Code block added - OriginalGriff[/edit]

i have two table.

CREATE TABLE [dbo].[Attendance](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [JobId] [varchar](50) NULL,
    [Date] [date] NULL,
    [Systemdate] [datetime] NULL,
    [Attendance] [nchar](1) NULL,
    [site] [varchar](50) NULL,
    [update1] [nchar](1) NULL,
    [overtime] [decimal](18, 0) NULL,
    [Attendance1] [nchar](1) NULL,
 CONSTRAINT [PK_Attendance]





CREATE TABLE [dbo].[LabourRegistration](
    [JobId] [varchar](50) NOT NULL,
    [Name] [varchar](50) NULL,
    [FHName] [varchar](50) NULL,
    [Gender] [varchar](50) NULL,
    [Age] [varchar](50) NULL,
    [Category] [varchar](50) NULL,
    [Address] [varchar](50) NULL,
    [UploadPhotograph] [varchar](50) NULL,
    [DateofRegistration] [varchar](50) NULL,
    [ContractorId] [varchar](50) NULL,
    [ContractorName] [varchar](50) NULL,
    [site] [varchar](50) NULL,
 CONSTRAINT [PK_LabourRegistration_1] PRIMARY KEY CLUSTERED
(
    [JobId] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

推荐答案

请参考此链接以生成rdlc报告.

您不能提及您正在使用哪个报告.请在提问时在标签中提及它.

http://www.c-sharpcorner.com/UploadFile/a72401/rdlc -report-generation-using-dataset/ [ http://www.ramto.com/Blog/post/Using-RDLC-files-and-Microsoft-Report-Viewer-in-ASPNET.aspx [ http://beyondrelational.com/modules/24/syndicated/519/posts/12873/sql-server-develop-reports-with-rdlc-aspnet.aspx [
please refer this links to generate rdlc report.

you cant mention which report you are using. please mention it in your tags while asking question.

http://www.c-sharpcorner.com/UploadFile/a72401/rdlc-report-generation-using-dataset/[^]

http://www.ramto.com/blog/post/Using-RDLC-files-and-Microsoft-Report-Viewer-in-ASPNET.aspx[^]

http://beyondrelational.com/modules/24/syndicated/519/posts/12873/sql-server-develop-reports-with-rdlc-aspnet.aspx[^]


这篇关于我想生成一张考勤表.表格/表格中的“列数"大约为35列,其中包括员工编号,姓名,总出勤率(就像出勤登记册一样).的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆