Friday, September 30, 2016

Tablix: Repeat header rows on each page not working

Tablix: Repeat header rows on each page not working


It depends on the tablix structure you are using. In a table, for example, you do not have column groups, so Reporting Services does not recognize which textboxes are the column headers and setting RepeatColumnHeaders property to True doesn't work.
Instead, you need to:
  1. Open Advanced Mode in the Groupings pane. (Click the arrow to the right of the Column Groups and select Advanced Mode.)
    • Screenshot
  2. In the Row Groups area (not Column Groups), click on a Static group, which highlights the corresponding textbox in the tablix. Click through each Static group until it highlights the leftmost column header. This is generally the first Static group listed.
  3. In the Properties window, set the RepeatOnNewPage property to True.
    • Screenshot
  4. Make sure that the KeepWithGroup property is set to After.
The KeepWithGroup property specifies which group to which the static member needs to stick. If set to After then the static member sticks with the group after it, or below it, acting as a group header. If set to Before, then the static member sticks with the group before, or above it, acting as a group footer. If set to None, Reporting Services decides where to put the static member.
Now when you view the report, the column headers repeat on each page of the tablix.
This video shows how to set it exactly as the answer described
source : http://stackoverflow.com/questions/11285923/tablix-repeat-header-rows-on-each-page-not-working-report-builder-3-0

Thursday, September 29, 2016

First and Last day of current month

=DateSerial(Year(Now), Month(Now), 1) for first day of the month 
=DateSerial(Year(Now), Month(Now)+1, 0) for the last day of the month.
--previous month last
=DateSerial(Year(Now()), Month(Now()), "1").AddDays(-1)

--previous month first
=DateSerial(Year(Now()), Month(Now()), "1").AddMonths(-1)

SSRS Expression Cheat Sheet

SSRS Expression Cheat Sheet

ProblemsExpression
Return first day of current Week 
(ex. Default Start Date parameter to return WTD)
Expression on the parameter default value: 
=DateAdd("d",-DatePart(DateInterval.WeekDay,Today,0,0)+1,Today) 
Expression Output Example: 11/7/2010 12:00:00 AM
Return first day of current Month 

(ex. Default Start Date parameter to return MTD)
Expression on the parameter default value: =DateAdd("d",-(Day(today)-1), Today)
or
=DateSerial( year(today()), month(today()), 1) 
Expression Output Example:11/1/2010 12:00:00 AM
Return first day of current year 
ex. Default Start Date parameter to return YTD)
Expression on the parameter default value: 
=DateAdd("d",-DatePart(DateInterval.DayOfYear,Today,0,0)+1,Today) 
Expression Output Example: 1/1/2010 12:00:00 AM
Return period over period 
(ex. Default date parameters to a rolling year)
Expression on the parameter default value: 

Week over Week 
=DateAdd("ww",-1, Today) 

Month over Month 
=DateAdd("m",-1,Today) 

Year over Year 
=DateAdd("yyyy",-1, Today) 

Expression Output Example:10/9/2010 12:00:00 AM
Return current month nameExpression in Text Box: 
=MonthName(Month(Today())) 

Expression Output Example:November
Uppercase fieldsExpression in Text Box: 
=UCASE(Fields!FieldName.Value) 

Expression Output Example:NOVEMBER
Convert text to proper case 
(ex. 1st letter in each word is uppercase)
Expression in Text Box: 
=StrConv(Fields!FieldName.Value, VbStrConv.ProperCase)
Replace NULL with another valueExpression in Text Box: 
=iif(Fields!FieldName.Value = nothing, "No Value",Fields! FieldName.Value)
Alternating row color (Banding effect)BackgroundColor property on Text Box: 
=iif(RowNumber(Nothing) Mod 2 = 0, "Silver", "White")
Handling division by zeroExpression in Text Box: 

=iif(Fields!DenominatorField.Value = 0, 0, Fields!NumeratorField.Value/ 

iif(Fields!DenominatorField.Value = 0, 1, Fields! DenominatorField.Value))
security number)Expression in Text Box: 

=Replace(Fields!EmailAddress.Value,"-","")

source : http://pragmaticworks.com/Training/Resources/Cheat-Sheets/SSRS-Expression-Cheat-Sheet

Show all records/some records based on parameter value

Method 1 
You need to set up a filter similar to the following:
enter image description here
Where the expression is:
=IIf(Parameters!FilterColumn.Value = Fields!Category.Value
        or Parameters!FilterColumn.Value = "All products"
    , "Include"
    , "Exclude")
This matches the row Category based on the parameter value, or, if the value = All products, will include all rows.
As mentioned in the comments and the other answer, this is possible in the SP too, but since it seems to be specifically to demonstrate the functionality this should do the trick at the report level.
--------------------------------------------------------------------------------------------------------------------------
Method 2 
I have created some solution and worked for me:
enter image description here
In Expression field, I put first expression:
1.  Iif(Parameters!FilterColumn.Value = "All", 1, Fields!Category.Value)
In Value field, I put second expression:
2.  Iif(Parameters!FilterColumn.Value = "All", 1, Parameters!FilterColumn.Value)
So, when I choose "All" value in parameter, then first expression will result 1, and second expression will result 1, and i have 1 = 1 which is true for all rows, and I got all rows in table.
When I choose specific category from parameter, then in first expression result will be Fields!Category.Value and in second expression will be Parameters!FilterColumn.Value. Simple, I got Fields!Category.Value = Parameters!FilterColumn.Value, or just give me rows where category is that choosen in parameter.
source : http://stackoverflow.com/questions/18203317/show-all-records-some-records-based-on-parameter-value



Tuesday, September 20, 2016

การเขียน Connection String แบบต่างๆ เพื่อเชื่อมต่อ SQLConnection (.Net)

การเขียน Connection String แบบต่างๆ เพื่อเชื่อมต่อ SQLConnection (.Net)

ผมมีความรู้สึกว่า แต่ละคน  มีการสร้างการติดต่อฐานข้อมูลต่างกันครับ
อาจจะเป็นเพราะว่า ยังไม่รู้  หรือ  รู้อยู่แบบเดียว  หรือ ยังไม่เข้าใจ หลักการเชื่อมต่อฐานข้อมูล
จึงเอามาเพื่อให้รู้เพิ่มอีกหน่อยครับ

ในการทำให้โปรแกรมของเรา สามารถติดต่อฐานข้อมูล
อันนึงที่มักเป็นปัญหา บ่อยๆ คือ การเขียน Connection String ผิด

ทำไมผิด ?บ่อยครั้งที่ผมเขียนผิด ก็นั่งงง เป็นวัน  ว่าทำไมคนอื่นทำแบบเดียวกันแล้ว connect ได้
แล้วเราทำไม่ได้   แล้วก็หลายครั้งนั้น   ผมก็หาสาเหตุได้ว่า เพราะสภาพแวดล้อม ไม่เหมือนกัน
ไม่ได้เกี่ยวว่า บ้านใครอยู่ที่ไหน  แต่เกี่ยวกับว่า  โปรแกรมของเรา ติดต่อไปยัง DB Server ที่เป็นแบบไหน
ต่างหาก  เช่น  
WindowsXP + SQL Server บนเครื่องเดียวกัน
WindowsXP เครื่องหนึ่ง  SQL Server อีกเครื่องหนึ่ง Windows 2000 Server
SQL Server มีมากกว่า 1 Instance หรือ ไม่ได้ใช้ชื่อ Default Stance
ต่างคนก็ต่างรูปแบบกันไป 
บางครั้งมี IIS เพื่อทำ Web Server มาอีก  เลยงงไปใหญ่

เรามาดูกันครับ ว่า แยกโดยง่ายๆแล้ว  เป็นยังไง
ตัวอย่างจะทำการติดต่อ SQL Server ดังนี้

* server01 คือชื่อเครื่องที่เป็น DB Server
   serverName\instanceName ในที่นี้ คือ server01\instance01
   กรณีที่ เราใช้ instance ห้ามลืมเด็ดขาดที่ต้องระบุ instance name ด้วยทุกครั้ง
   Initial Catalog คือ ชื่อ ฐานข้อมูล ให้ชื่อว่า StoreDB
   User Id และ Password  คือ login สำหรับ SQL Server เช่น sa [ไม่แนะนำให้ใช้]


แบบแรก เรียกว่า
Standard Security:
เขียนสองแบบ  อันไหนก็ได้ครับ ให้ผลเหมือนกัน
กรณีที่เราได้สร้าง User ไว้ใน SQL Server ไว้แล้ว  หรือ  ไปขอเขาใช้ SQL Server คนอื่น แล้วเขาให้ User กับ Password สำหรับ ติดต่อฐานข้อมูลเท่านั้น

myconn = "Data Source=server01;Initial Catalog=StoreDB;User Id=sa;Password=sapassword;"
หรือ
myconn = "Server=server01;Database=StoreDB;User ID=sa;Password=sapassword;Trusted_Connection=False"

   ส่วน Trusted_Connection=False เนี่ย ต้องระบุด้วยนะครับ เพราะเราจะขอใช้งาน User Id ของ SQL Server เลย

แบบสอง เรียกว่า
Trusted Connection:
อันนี้ พิเศษ สำหรับ Windows Server ครับ คือ SQL Server ที่ ติดตั้ง แบบ Mixed Mode คือ สามารถใช้ได้ทั้ง User Id บนระบบ Windows 2000 และ SQL Server login  เพื่อติดต่อฐานข้อมูล หรือว่าโปรแกรมทำงานบนเครื่องเดียวกันกับ SQL Server หรือ เครื่องสองเครื่อง ได้ Trusted กันเรียบร้อยแล้ว
myconn = "Data Source=server01;Initial Catalog=StoreDB;Integrated Security=SSPI;"
หรือ
myconn = "Server=server01;Database=StoreDB;Trusted_Connection=True;"

ทั้งสองแบบนี้ ก็ให้ผลแบบเดียวกัน แล้วแต่จะเลือกใช้ 
เห็นไหมครับว่า  User Id กับ Password ไม่ต้องใส่อีกแล้ว เพราะการติดต่อจะมีการ Authen โดย Windows เองอยู่แล้ว

แบบสุดท้าย
Connect via an IP address:
ติดต่อ SQL Server อีกเครื่องหนึ่ง ชื่อเครื่องก็ไม่รู้  โปรโตคอล Netbios ก็ไม่ได้ใช้  รู้อย่างเดียวคือ IP address ของ SQL Server (SQL Server เป็น service ที่ใช้ TCP Port 1433 เป็น Default Port เปลี่ยนเป็นอันอื่น ถ้าไม่ได้ใช้ Port นี้)
myconn = "Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=StoreDB;User ID=sa;Password=sapassword;"

* Network Library เพื่อเลือกค่าที่ต้องใช้ให้ถูกตัว ต้องรู้เพิ่มนิดหนึ่งครับว่า ต้องติดต่อแบบไหน แต่โดยทั่วไป เป็น Win32 Winsock TCP/IP อยู่แล้ว ถ้าไม่รู้ใส่ อันนี้ไปก่อน

แบบต่างๆ ของ  Network library
Name           Network library
dbnmpntw     Win32 Named Pipes
dbmssocn     Win32 Winsock TCP/IP
dbmsspxn     Win32 SPX/IPX
dbmsvinn     Win32 Banyan Vines
dbmsrpcn     Win32 Multi-Protocol (Windows RPC)



หมดแล้วล่ะครับ ทั่วไปก็ใช้อยู่เท่านี้ ดูแล้วไม่ยากเลยใช่ไหม
ทีนี้มาดูว่าใช้ยังไง

สำหรับ C#:
using System.Data.SqlClient;

SqlConnection mySQLConn = new SqlConnection();
mySQLConn.ConnectionString = myconn;
mySQLConn.Open();

สำหรับ VB.NET:
Imports System.Data.SqlClient

Dim mySQLConn As SqlConnection = New SqlConnection()
mySQLConn.ConnectionString = myconn
mySQLConn.Open()

จะเลือกใช้อย่างไหนก็เลือกดูเอานะครับ ว่า สภาพแวดล้อม ของเราเป็นแบบไหน

Source : http://greatfriends.biz/webboards/msg.asp?id=7391