Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. checkai

    Print on Front and Back

    You'll need to do that through the settings when printing I believe.
  2. checkai

    Migrating Crystal Reports and many features not available

    I did this migration over a year ago...more like 200 reports... Be prepared to let go of the nice formatting and the drilling through of a report. In my case, we made some improvements to the way we provided reporting and the end users accepted the changes very well. Good luck! And start with...
  3. checkai

    Link a 2000 instance to 2008

    Ours are setup w/0 a Provider String... Provider: SQL Native Client Product Name: SQLNCLI Data Source: [2000 SQL Server Name] Catalog: [2000 SQL Server Database Name]
  4. checkai

    Link a 2000 instance to 2008

    In order for SQL2000 to reference an instance of SQL2008 it is necessary for certain files and drivers to be updated. This might be an issue if you have legacy applications on the SQL2000 server, but if you wish to try this you will need to download and install the following items: Microsoft...
  5. checkai

    Total for Calculated Field

    I'm saying you should create a variable...click on your dataset and choose Add to create a variable.
  6. checkai

    Total for Calculated Field

    I would create a variable to hold this...then simply add it to any group level that you want to see a sum. =SUM(Fields!rptGrossMargin.Value)
  7. checkai

    "Like" in reporting services

    In 2005, the code dot intellisense doesn't work. Here's how I've formatted my custom code. Function GetFontStyleIfMonth(FieldText As String) As If FieldText.ToLower.Contains("january") Or FieldText.ToUpper.Contains("february") Then GetFontStyleIfMonth = "Bold" Else...
  8. checkai

    Using 'IN' in a 'SELECT' statement

    You'll have to do dynamic sql or utilize a function that will send back a table...this isn't supported.
  9. checkai

    Hide HTML Tags in report Comments field on SQL Report 2005

    CREATE FUNCTION [dbo].[udf_StripHTML] (@HTMLText VARCHAR(8000)) RETURNS VARCHAR(8000) AS BEGIN DECLARE @Start INT DECLARE @End INT DECLARE @Length INT SET @Start = CHARINDEX('<',@HTMLText) SET @End =...
  10. checkai

    Inserts twice

    I have heard of ASP.Net calls that will do this. I could bet that is your issue if utilizing it via web page. Count up the post backs! :)
  11. checkai

    Save Query Result as a New Table while using Union All

    You need a table alias when using the UNION ALL
  12. checkai

    Conditional Visibility of Top Group

    Yes. If I select R, so the top group is showing, it works...if I select B, it displays a blank line that cannot be clicked to get to the second group.
  13. checkai

    Find position of last occurrence of character

    http://www.sqlservercentral.com/scripts/T-SQL+Aids/31116/
  14. checkai

    Adding Dynamic Page Break to Groups

    What I have done for this is setup a dummy group that doesn't display above the group you want page breaks. Below, you'd want a page break for each Group 2. 1. Group 1 2. Dummy Group 3. Group 2 The dummy group would group by a variable. =IIF(Parameters!Break.value =...
  15. checkai

    Currency-varying decimal places (but always min 2 decimals)

    Dave's follow up should work. Format = #,###.00###
  16. checkai

    Currency-varying decimal places (but always min 2 decimals)

    Couldn't you just set the format value to #,###.#####
  17. checkai

    Need to concatenate 2 specific values in a field

    And if you need nested... select case when ProjTypeName = 'Packaging' then 'Some New Type' else case when ProjTypeName = 'Labeling' then ProjTypeName + ' ' LaLaField else ProjTypeName end end as NewProjectType
  18. checkai

    Conditional Visibility of Top Group

    I am converting from 2005 to 2008 and have a report that does the following and is not working: 1. User selects a parameter denoting how they'd like to view the report (B or R values). 2. If "B" then hide the top group and show the second group and allow expanding into groups 3,4 3. If "R" show...
  19. checkai

    Export All Report Objects from BOE XI

    I would just like to export them to a network location because we're going to be shutting down the server for good, but want backups in case.
  20. checkai

    Export All Report Objects from BOE XI

    Is there a way to export all .rpt objects from Business Objects Enterprise?

Part and Inventory Search

Back
Top