Thursday, March 29, 2012
Converting Date-Time to Date
My issue is that I have a Date-Time Field which I want to use as a column heading for a crosstab. However since there are multiple date entries with varying times I get multiple column headings. Could anyone tell me how to convert this datetime field to a date field so that I only get one column per day.
ThanksThere are are number of VB.Net functions for manipulating dates which you
could use for this.
The simplest (but probably not most efficient) way would be to convert the
date to a string then back to a date: =CDate(CStr(Fields!DateTime.Value))
You might want to consider doing the conversion in your query instead.
--
My employer's lawyers require me to say:
"This posting is provided 'AS IS' with no warranties, and confers no
rights."
"SAcanuck" <SAcanuck@.discussions.microsoft.com> wrote in message
news:F6AFC614-180B-4C75-94B8-DB3149275D3D@.microsoft.com...
> Hi: I am new to Reporting Services.
> My issue is that I have a Date-Time Field which I want to use as a column
heading for a crosstab. However since there are multiple date entries with
varying times I get multiple column headings. Could anyone tell me how to
convert this datetime field to a date field so that I only get one column
per day.
> Thanks
Tuesday, March 27, 2012
Converting Crystal Reports to SQL Server Reporting Services?!
Server Reporting Services?
We have a lot of reports that need to be moved across. Is there a method to
do this other than re-writing the reports in SQL Server Reporting Services?
HELP!!!
Rich Elliott
Associates Solutions, Inc.
www.associates-solutions.comI do not believe that there is any commercial tool to do this although
Hitachi Consulting (check MS website for partners) will do this as a
service. RS has no such capabilities. Also, there are things that Crystal
does that RS doesn't and vice a versa.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Rich Elliott" <RichElliott@.discussions.microsoft.com> wrote in message
news:4B8E16C1-2741-463A-BE42-7FD2F0429DDF@.microsoft.com...
> Is there a method to convert reports created using Crystal Reports to SQL
> Server Reporting Services?
> We have a lot of reports that need to be moved across. Is there a method
> to
> do this other than re-writing the reports in SQL Server Reporting
> Services?
> HELP!!!
> Rich Elliott
> Associates Solutions, Inc.
> www.associates-solutions.com
>
Converting Crystal Reports
I am working on converting Crystal Reports to RDL files. I want to convert
my reports to an RDL file, so I can use Reporting Services in MS SQL and
Visual Studio.Net- instead of Crystal. I have two questions:
I have done a lot of research into this and it seems there are paid services
such as Hitachi consulting that will do this and http://www.rpttosql.com.
However, my company is not willing to pay for such services. So what I have
done, is convert the Crystal Report to XML using Crystal 9.
1. Now I want to convert that XML file to an RDL file? How can I do this?
Any direct links or methods will be very helpful.
2. Also, is their an online utility that will do this? Any direct links
will be very helpful.
I have downloaded a program that can convert the Crystal Reports to XML.
However, Crystal 9 can do the same. I am still at the same situation in
question one- I can't convert the XML file to an RDL. Advise is kindly
requested.
Thanks,
RickAn RDL file is an xml file bases on the schema for rdl (which most likely
stands for report definition language, just a guess). To see what it looks
like create a simple report. Then go View, Code. What you see is the XML
file. The schema for it is at the top:
http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition
If you compare the xml from Crystal you will see that they are nothing
alike. Now Crystal has similar concepts so for some things there might be a
one to one correspondence but not for everything. It is a non-trivial task
to convert (hence why Hitachi is charging for it).
Most people doing this have the Crystal report up and then copy and paste
things like text, the query definition etc.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"jjrr007" <jjrr007@.discussions.microsoft.com> wrote in message
news:A62BF888-87FF-4E64-98D3-B8E540AB7D52@.microsoft.com...
> Hi,
> I am working on converting Crystal Reports to RDL files. I want to
convert
> my reports to an RDL file, so I can use Reporting Services in MS SQL and
> Visual Studio.Net- instead of Crystal. I have two questions:
> I have done a lot of research into this and it seems there are paid
services
> such as Hitachi consulting that will do this and http://www.rpttosql.com.
> However, my company is not willing to pay for such services. So what I
have
> done, is convert the Crystal Report to XML using Crystal 9.
> 1. Now I want to convert that XML file to an RDL file? How can I do this?
> Any direct links or methods will be very helpful.
> 2. Also, is their an online utility that will do this? Any direct links
> will be very helpful.
> I have downloaded a program that can convert the Crystal Reports to XML.
> However, Crystal 9 can do the same. I am still at the same situation in
> question one- I can't convert the XML file to an RDL. Advise is kindly
> requested.
> Thanks,
> Rick
>|||In addition to Bruces response, I had heard that Hitachi folks made a
conversion tool that their Consultants use to do this quickly...
--
Wayne Snyder, MCDBA, SQL Server MVP
Mariner, Charlotte, NC
www.mariner-usa.com
(Please respond only to the newsgroups.)
I support the Professional Association of SQL Server (PASS) and it's
community of SQL Server professionals.
www.sqlpass.org
"Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> wrote in message
news:OYbTXZhDFHA.936@.TK2MSFTNGP12.phx.gbl...
> An RDL file is an xml file bases on the schema for rdl (which most likely
> stands for report definition language, just a guess). To see what it looks
> like create a simple report. Then go View, Code. What you see is the XML
> file. The schema for it is at the top:
> http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition
> If you compare the xml from Crystal you will see that they are nothing
> alike. Now Crystal has similar concepts so for some things there might be
> a
> one to one correspondence but not for everything. It is a non-trivial task
> to convert (hence why Hitachi is charging for it).
> Most people doing this have the Crystal report up and then copy and paste
> things like text, the query definition etc.
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
> "jjrr007" <jjrr007@.discussions.microsoft.com> wrote in message
> news:A62BF888-87FF-4E64-98D3-B8E540AB7D52@.microsoft.com...
>> Hi,
>> I am working on converting Crystal Reports to RDL files. I want to
> convert
>> my reports to an RDL file, so I can use Reporting Services in MS SQL and
>> Visual Studio.Net- instead of Crystal. I have two questions:
>> I have done a lot of research into this and it seems there are paid
> services
>> such as Hitachi consulting that will do this and http://www.rpttosql.com.
>> However, my company is not willing to pay for such services. So what I
> have
>> done, is convert the Crystal Report to XML using Crystal 9.
>> 1. Now I want to convert that XML file to an RDL file? How can I do
>> this?
>> Any direct links or methods will be very helpful.
>> 2. Also, is their an online utility that will do this? Any direct links
>> will be very helpful.
>> I have downloaded a program that can convert the Crystal Reports to XML.
>> However, Crystal 9 can do the same. I am still at the same situation in
>> question one- I can't convert the XML file to an RDL. Advise is kindly
>> requested.
>> Thanks,
>> Rick
>|||You can generate your RDL/XML files programmatically w/o XML or VS, using the
RDL reader/writer:
http://www.rdlcomponents.com
Thanks
Jerry
"Wayne Snyder" wrote:
> In addition to Bruces response, I had heard that Hitachi folks made a
> conversion tool that their Consultants use to do this quickly...
> --
> Wayne Snyder, MCDBA, SQL Server MVP
> Mariner, Charlotte, NC
> www.mariner-usa.com
> (Please respond only to the newsgroups.)
> I support the Professional Association of SQL Server (PASS) and it's
> community of SQL Server professionals.
> www.sqlpass.org
> "Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> wrote in message
> news:OYbTXZhDFHA.936@.TK2MSFTNGP12.phx.gbl...
> > An RDL file is an xml file bases on the schema for rdl (which most likely
> > stands for report definition language, just a guess). To see what it looks
> > like create a simple report. Then go View, Code. What you see is the XML
> > file. The schema for it is at the top:
> > http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition
> >
> > If you compare the xml from Crystal you will see that they are nothing
> > alike. Now Crystal has similar concepts so for some things there might be
> > a
> > one to one correspondence but not for everything. It is a non-trivial task
> > to convert (hence why Hitachi is charging for it).
> >
> > Most people doing this have the Crystal report up and then copy and paste
> > things like text, the query definition etc.
> >
> > --
> > Bruce Loehle-Conger
> > MVP SQL Server Reporting Services
> >
> > "jjrr007" <jjrr007@.discussions.microsoft.com> wrote in message
> > news:A62BF888-87FF-4E64-98D3-B8E540AB7D52@.microsoft.com...
> >> Hi,
> >>
> >> I am working on converting Crystal Reports to RDL files. I want to
> > convert
> >> my reports to an RDL file, so I can use Reporting Services in MS SQL and
> >> Visual Studio.Net- instead of Crystal. I have two questions:
> >>
> >> I have done a lot of research into this and it seems there are paid
> > services
> >> such as Hitachi consulting that will do this and http://www.rpttosql.com.
> >> However, my company is not willing to pay for such services. So what I
> > have
> >> done, is convert the Crystal Report to XML using Crystal 9.
> >>
> >> 1. Now I want to convert that XML file to an RDL file? How can I do
> >> this?
> >> Any direct links or methods will be very helpful.
> >>
> >> 2. Also, is their an online utility that will do this? Any direct links
> >> will be very helpful.
> >>
> >> I have downloaded a program that can convert the Crystal Reports to XML.
> >> However, Crystal 9 can do the same. I am still at the same situation in
> >> question one- I can't convert the XML file to an RDL. Advise is kindly
> >> requested.
> >>
> >> Thanks,
> >> Rick
> >>
> >
> >
>
>
Converting Crystal Code
to this format. However I've ran in to a problem and it is to do with a
function written in Crystal syntax but I cannot seem to be able to convert
this logic Heres the functio
----
StringVar name = "";
If NOT IsNull({Query.FIELD1_Company}) Then
name := {Query.FIELD1_Company};
If NOT IsNull({Query.FIELD2_COMPANY}) Then
name := {Query.FIELD2_COMPANY};
If NOT IsNull({Query.FIELD3_COMPANY}) Then
name := {Query.FIELD3_COMPANY};
If NOT IsNull({Query.FIELD4_COMPANY}) Then
name := {Query.FIELD4_COMPANY};
If NOT IsNull({Query.FIELD5_COMPANY}) Then
name := {Query.FIELD5_COMPANY};
If NOT IsNull({Query.FIELD6_COMPANY}) Then
name := {Query.FIELD6_COMPANY};
If NOT IsNull({Query.FIELD7_COMPANY}) Then
name := {Query.FIELD7_COMPANY};
If NOT IsNull({Query.FIELD8_COMPANY}) Then
name := {Query.FIELD8_COMPANY};
name
----
For a start, 'Null' cannot be used, neither can System.DBNull etc only
Nothing.
StringVar is a variable declaration in Crystal. What this all does is
prevents empty fields being returned (in Column 1) and the report format is
something similar to this
Company, Number of..., Export To..., etc
SomeCompany, 1, 1, etc
NULL, 0, 3, etc
So the code prevents record number 2 from appearing in the report and
returns the company name from one of the other columns (as code above).
NOTE All columns actually return the Company name but we are simply doing a
DISTINCTCOUNT on all the other columns(Query.FIELD2_COMPANY etc), so Column 1
will always have a company name (if the code works, as in Crystal).
Any ideas on this? and thanks in advanceIs TSql It is
ISNULL(Filed1, ISNULL(Field2, ISNULL(Field3, ISNULL(Field4,
ISNULL(Field5,'')))))
What this does is if Field1 is null it moves to Field2. A lot less
complicated.
"slk55guy" wrote:
> I'm evaluating Reporting Services and currently converting a Crystal Report
> to this format. However I've ran in to a problem and it is to do with a
> function written in Crystal syntax but I cannot seem to be able to convert
> this logic Heres the function
> ----
> StringVar name = "";
> If NOT IsNull({Query.FIELD1_Company}) Then
> name := {Query.FIELD1_Company};
> If NOT IsNull({Query.FIELD2_COMPANY}) Then
> name := {Query.FIELD2_COMPANY};
> If NOT IsNull({Query.FIELD3_COMPANY}) Then
> name := {Query.FIELD3_COMPANY};
> If NOT IsNull({Query.FIELD4_COMPANY}) Then
> name := {Query.FIELD4_COMPANY};
> If NOT IsNull({Query.FIELD5_COMPANY}) Then
> name := {Query.FIELD5_COMPANY};
> If NOT IsNull({Query.FIELD6_COMPANY}) Then
> name := {Query.FIELD6_COMPANY};
> If NOT IsNull({Query.FIELD7_COMPANY}) Then
> name := {Query.FIELD7_COMPANY};
> If NOT IsNull({Query.FIELD8_COMPANY}) Then
> name := {Query.FIELD8_COMPANY};
> name;
> ----
> For a start, 'Null' cannot be used, neither can System.DBNull etc only
> Nothing.
> StringVar is a variable declaration in Crystal. What this all does is
> prevents empty fields being returned (in Column 1) and the report format is
> something similar to this
> Company, Number of..., Export To..., etc
> SomeCompany, 1, 1, etc
> NULL, 0, 3, etc
> So the code prevents record number 2 from appearing in the report and
> returns the company name from one of the other columns (as code above).
> NOTE All columns actually return the Company name but we are simply doing a
> DISTINCTCOUNT on all the other columns(Query.FIELD2_COMPANY etc), so Column 1
> will always have a company name (if the code works, as in Crystal).
> Any ideas on this? and thanks in advance
>
Converting Blob fields to Text on a Report
to the report. Note: I am using blobs since I need virtually
unlimited text. So, to get the data out of blobs, I normally use ADO
methods of getchunk and actualsize. I tried creating a class with the
logic that I needed. I could pass it SQL and it would return the value
of the blob as a text string. Then I created the following Custom Code
in the report:
Public Function BlobText(strColumn$, strTaskID$) As String
dim t as object
t = createobject("MyReportClass.Functions")
BlobText = t.blob2text("MySQLServer","select " & strColumn & _
" from SQLDatabase..task where ID = '" & strTaskID & "'")
End Function
When I preview the report it works perfectly. When I deploy the
report, the textbox that calls the method puts "#Error" on the report.
There does not seem to be any meaningful log to help.
Anyone have any guesses?
Thanks,
SteveHi Steve,
Welcome to use MSDN Managed Newsgroup!
From your descriptions, I understood you would like to know how to write
embedded code in the reporting services. If I have misunderstood your
concern, please feel free to point it out.
Based on my knowledge, you are recommanded to read the article below
Writing Custom Code in SQL Server Reporting Services
http://blogs.sqlxml.org/bryantlikes/articles/824.aspx
Embedded Code In Reporting Services
http://odetocode.com/Articles/130.aspx
If this still does not resolve your issue, would you please generate a
sample rdl file with your function based on AdventureWorks database and
send it to me? my direct email address is v-mingqc@.online.microsoft.com
(remember remove "online" before you click SEND as "online" is only
prepared for SPAM), you may send the file to me directly and I will keep
secure.
Thank you for your patience and cooperation. If you have any questions or
concerns, don't hesitate to let me know. We are always here to be of
assistance!
Sincerely yours,
Michael Cheng
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.|||Lost Customer, Close: Not Resolved
Sunday, March 25, 2012
Converting AS2000 DSO from VB6 to VS2005
I have a VB6 program that uses Analysis Services 2000 DSO to Automatically Process an AS2000 Database. I ran the Upgrade Wizard in VS2005 for Visual Basic on this VB6 program but the result has an error I can't find how to correct.
Here is the original code -
Dim mdDatabase As DSO.MDStore
Dim dsoServer As DSO.Server
Set dsoServer = New DSO.Server
dsoServer.Connect ("CubeServer")
Set mdDatabase = dsoServer.MDStores("TestCubes")
mdDatabase.Process
Here is the code as a result of the 2005 upgrade wizard -
Dim mdDatabase As DSO.MDStore
Dim dsoServer As DSO.Server
Set dsoServer = New DSO.Server
dsoServer.Connect ("CubeServer")
mdDatabase = dsoServer.MDStores("TestCubes")
The above line displays the following error: 'DSO.OlapCollection Cannot be indexed'
mdDatabase.Process
Can anyone tell me what's wrong? I can't use AMO because it doesn't work against AS2000. How do I select a specific AS2000 Databse with VB in VS2005 and process it?
Thanks,
JohnWC
Try posting this question on the on the Visual Basic General discussion forum.
Edward.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
I did find the answer in the OLAP Managed Newsgroup. For anyone who may be interested, the following code line works.
mdDatabase = dsoServer.MDStores.Item("TestCubes")
JohnWC
Converting Access report to Reporting Services
Hi,
I am trying to convert an Access report where I use expressions to calculate the number of males/females for example.
I have used the following expression, but it always returns an incorrect figure:
=Sum(IIf(Fields!gender.Value ="Female", 1, 0))
When I check the query however it has 46 rows = to 'Female', but when I previes the report it always comes out as 24.
What's causing this?
Thanks
Hi,
From your description, it seems the expression doesn't return the right number of those 'Female' field, right?
What I can see is to use a TRIM function to remove all the leading and trailing while-spaces characters from the value in each filed. Sometimes theses leading and trailing white-spaces characters may cause the expression "IIf(Fields!gender.Value = "Female", 1, 0)" returns 0. You may use TRIM to have a try, see the following code:
=Sum(IIf(TRIM(Fields!gender.Value) = "Female", 1, 0))
Thanks.
Thanks, that seems to have worked.
I wasn't aware of the leading and trailing white-spaces.
Thursday, March 22, 2012
Converting 2000 Reporting Services Reports to 2005!
just wondering if anyone knows how to convert 2000 reports to 2005? any hints or resources would be greatly appreciated, having trouble finding it out on the web
Thanks!
As far as my experiences, all RS 2000 reports will normally work on RS 2005 without any problem, you don't need to do too much unless you want to use the cool features of RS 2005.
Tuesday, March 20, 2012
convert word doc to pdf
I think maybe it possible make report in the report services, and then save them in pdf format.
but I dont know if I can make report from doc file.
and also if I can get the url of the file by query string.
Is it possible?
thanks!try again......|||
Do you have static Word documents that need 1-time conversion, or do you have Word documents that represent report styles or definitions that you want to export to PDF regularly with different data? In the first case, I'd say RS is not the right tool. In the second case, I think you'll get good results by designing the report definition from scratch using Report Designer, using the Word documents as prototypes.
Monday, March 19, 2012
convert value to 2 decimal places?
Hello, is there a way to convert the value to just 2 decimal places, I created the report in Reporting Services and it has quite a few digits to each value. I looked at the table and found that the data type is {Float}. Is there a way to convert the values to just 2 decimal places?..Thank You.
Try this...
Code Snippet
select cast(columnName as numeric(10,2)) as 'columnName' from tableName
|||That worked, Thank You...Convert UTC time to local time
Hello,
I am new with the reporting services. I am creating a report and I need to display date/time on the report. But the servers stores those date/time in UTC. How can I convert them to the local time in my report.
Thanks for your help.
You need to use System.TimeZone.ToLocalTime(UTCTime).
See http://msdn2.microsoft.com/en-us/library/system.timezone.tolocaltime.aspx.
You should be able to use TimeZone.CurrentTimeZone if you want to convert using the server time zone.
|||Hello,
i tried this tip with no luck.
I used the expression = System.TimeZone.ToLocalTime(!Fields.DateTime.Value) in one of my cells and got an BC30469 error.
|||Try this instead:
=System.TimeZone.CurrentTimeZone.ToLocalTime(Fields!DateTime.Value)
-- Robert
|||Robert,
thanks alot. Works like a charm.
|||This works for conversion based on the time zone of the report server, but not the client. Is that correct? I tested this by using the function in a textbox on the report that I deployed to the report server. Then on my workstation PC, I changed my timezone and viewed the report. The time in the report still reflected the time on the report server (converted from the UTC time of course).
How do you change the dates in the reports dynamically based on the area of the country someone opens the report? Because the report renders as HTML first before being delivered to the client, does this mean it will always use the report server time zone?
Thanks
-Kory
|||I have the same question as KoryS. Anyone have an answer?Thanks.
Convert UTC time to local time
Hello,
I am new with the reporting services. I am creating a report and I need to display date/time on the report. But the servers stores those date/time in UTC. How can I convert them to the local time in my report.
Thanks for your help.
You need to use System.TimeZone.ToLocalTime(UTCTime).
See http://msdn2.microsoft.com/en-us/library/system.timezone.tolocaltime.aspx.
You should be able to use TimeZone.CurrentTimeZone if you want to convert using the server time zone.
|||Hello,
i tried this tip with no luck.
I used the expression = System.TimeZone.ToLocalTime(!Fields.DateTime.Value) in one of my cells and got an BC30469 error.
|||Try this instead:
=System.TimeZone.CurrentTimeZone.ToLocalTime(Fields!DateTime.Value)
-- Robert
|||Robert,
thanks alot. Works like a charm.
|||This works for conversion based on the time zone of the report server, but not the client. Is that correct? I tested this by using the function in a textbox on the report that I deployed to the report server. Then on my workstation PC, I changed my timezone and viewed the report. The time in the report still reflected the time on the report server (converted from the UTC time of course).
How do you change the dates in the reports dynamically based on the area of the country someone opens the report? Because the report renders as HTML first before being delivered to the client, does this mean it will always use the report server time zone?
Thanks
-Kory
Sunday, March 11, 2012
Convert string value to Date
can I convert it to date object in reporting services?
Because I would like to show the date in format according to regional
setting of client. After getting the date object, I can make use of
FormatDateTime. Thanks!
Regards,
MandaHi,
In the "Format" property just type g you will get the formated one.
or
Right click the textbox to get the properties. click Format tab and go to
Format code and click "..." select date and the format.
Amarnath
"Manda Ho" wrote:
> If I got a string in format 'yyyyMMddhhmmssf' (e.g. '2005032314221'), how
> can I convert it to date object in reporting services?
> Because I would like to show the date in format according to regional
> setting of client. After getting the date object, I can make use of
> FormatDateTime. Thanks!
> Regards,
> Manda
>
>|||If I would like to show the concat this date field with other message, do I
have to keep the date field under another textbox first?
Thanks!
"Amarnath" <Amarnath@.discussions.microsoft.com> wrote in message
news:B9EACB56-70B1-4F30-95CE-6BE6E897F228@.microsoft.com...
> Hi,
> In the "Format" property just type g you will get the formated one.
> or
> Right click the textbox to get the properties. click Format tab and go to
> Format code and click "..." select date and the format.
> Amarnath
> "Manda Ho" wrote:
> > If I got a string in format 'yyyyMMddhhmmssf' (e.g. '2005032314221'),
how
> > can I convert it to date object in reporting services?
> >
> > Because I would like to show the date in format according to regional
> > setting of client. After getting the date object, I can make use of
> > FormatDateTime. Thanks!
> >
> > Regards,
> > Manda
> >
> >
> >|||Hi,
Yes since you cannot apply format with other textbox. So keep it seperate
and align it.
Amarnath
"Manda Ho" wrote:
> If I would like to show the concat this date field with other message, do I
> have to keep the date field under another textbox first?
> Thanks!
> "Amarnath" <Amarnath@.discussions.microsoft.com> wrote in message
> news:B9EACB56-70B1-4F30-95CE-6BE6E897F228@.microsoft.com...
> > Hi,
> >
> > In the "Format" property just type g you will get the formated one.
> > or
> > Right click the textbox to get the properties. click Format tab and go to
> > Format code and click "..." select date and the format.
> >
> > Amarnath
> >
> > "Manda Ho" wrote:
> >
> > > If I got a string in format 'yyyyMMddhhmmssf' (e.g. '2005032314221'),
> how
> > > can I convert it to date object in reporting services?
> > >
> > > Because I would like to show the date in format according to regional
> > > setting of client. After getting the date object, I can make use of
> > > FormatDateTime. Thanks!
> > >
> > > Regards,
> > > Manda
> > >
> > >
> > >
>
>|||Thanks!
"Amarnath" <Amarnath@.discussions.microsoft.com> wrote in message
news:3851D293-473D-43AC-953A-EF3D25AF20E0@.microsoft.com...
> Hi,
> Yes since you cannot apply format with other textbox. So keep it seperate
> and align it.
> Amarnath
> "Manda Ho" wrote:
> > If I would like to show the concat this date field with other message,
do I
> > have to keep the date field under another textbox first?
> >
> > Thanks!
> >
> > "Amarnath" <Amarnath@.discussions.microsoft.com> wrote in message
> > news:B9EACB56-70B1-4F30-95CE-6BE6E897F228@.microsoft.com...
> > > Hi,
> > >
> > > In the "Format" property just type g you will get the formated one.
> > > or
> > > Right click the textbox to get the properties. click Format tab and go
to
> > > Format code and click "..." select date and the format.
> > >
> > > Amarnath
> > >
> > > "Manda Ho" wrote:
> > >
> > > > If I got a string in format 'yyyyMMddhhmmssf' (e.g.
'2005032314221'),
> > how
> > > > can I convert it to date object in reporting services?
> > > >
> > > > Because I would like to show the date in format according to
regional
> > > > setting of client. After getting the date object, I can make use of
> > > > FormatDateTime. Thanks!
> > > >
> > > > Regards,
> > > > Manda
> > > >
> > > >
> > > >
> >
> >
> >
Sunday, February 19, 2012
Convert GUID to String
how can i convert a GUID to a String in Reporting Services?! I need this
GUID to Group in a Table.
Thanks
Danielnow we have found out how to convert a GUID to a String. It works as
follows:
=CType(Fields!QuoteId.Value, GUID).ToString
"Daniel Doerfel" <danieldoerfel@.msn.com> schrieb im Newsbeitrag
news:u69xbE74FHA.2888@.tk2msftngp13.phx.gbl...
> Hello Newsgroup,
> how can i convert a GUID to a String in Reporting Services?! I need this
> GUID to Group in a Table.
> Thanks
> Daniel
>
Friday, February 10, 2012
Convert Crystal RPT to Reporting Services?
David StevensonDavid Stevenson wrote:
> Is there a utility to convert a Crystal v9 RPT to SQL Reporting
> Services?
> David Stevenson
Check out the partner's page at:
http://www.microsoft.com/sql/reporting/partners/default.asp
Kenneth Weeks
"Failing to aerate the brain and rejuvenate the creative juices leads
to an atrophy of spirit and an inbreeding of thought" - Clay Shannon|||There is no native support in RS 2000 to do this. However, take a look at
the consulting partners site and contact them direcrlt for a service/product
combination to help you with this:
http://www.microsoft.com/sql/reporting/partners/consulting.asp
--
Ravi Mumulla (Microsoft)
SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"David Stevenson" <david@.topstrategies.com> wrote in message
news:ONIDxWXdEHA.3616@.TK2MSFTNGP10.phx.gbl...
> Is there a utility to convert a Crystal v9 RPT to SQL Reporting Services?
> David Stevenson
>