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 Mike Lewis 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. CrazyManiac

    Cannot chage this part of a PivotTable

    Everytime I want to edit data in my Pivot Table I get this message: "Cannot change this part of a PivotTable". How can I allow to edit data field values in a Pivot Table using VBA?
  2. CrazyManiac

    Cannot insert Sumif formula

    This code ThisWorkbook.Worksheets("Sheet1").Cells(1, 101).Formula = "=SUMIF(A1:A100,"">0"")" works. Thanks for help.
  3. CrazyManiac

    Cannot insert Sumif formula

    ThisWorkbook.Worksheets("Sheet1").Cells(1, 101).Formula = "=SUMIF(A1:A100;"">0"")" Returns the same error :(
  4. CrazyManiac

    Cannot insert Sumif formula

    I need to sum all positive values in column A on Sheet1.Typing =Sumif(A1:A100;">0") in Formula Bar gives an expected result. But the code Sub tst() ThisWorkbook.Worksheets("Sheet1").Cells(1, 101).Value = "=SUMIF(A1:A100;"">0"")" End Sub returns an "Application-defined or object-defined...
  5. CrazyManiac

    ComboBox Values from SQL Server

    I'd like to ask user to pick some values from comboboxes to pass this values as parameters to stored procedures on SQL Server. The problem is that the values in comboboxes should be taken from SQL server database. Should I create a number of ADO Recordests and pass them to comboboxes before...
  6. CrazyManiac

    Merge Modules and unicows.dll

    2 tjax111: Suppose I have found a solution. This problem occurs when an ATL.dll is missing. The correct version of ATL.dll can be found and registered on the client computer using one of these 3 methods: 1. Install Microsoft Internet Explorer 6 on the client computer. 2. Manually copy and...
  7. CrazyManiac

    Merge Modules and unicows.dll

    I've made a setup package with Wise for Windows Installer to install all required runtime dll's. I've downloaded Crystal Reports merge modules and added them to the package. The installation works fine on Win2000, but on Win98 (suppose on Win95/Me as well) it cannot register some dll's showing...
  8. CrazyManiac

    Count in selection formula

    That's what I need. Thanks for help!
  9. CrazyManiac

    Count in selection formula

    I have an SQL database with two tables Organization (OrgID OrgName) and Sale (OrgID SaleDate). Tables are linked by OrgID. The report i've created in CR 9 shows organization and the number of sales for this organzation. Report has a paramter field {?MinSaleCount} and I want to show...
  10. CrazyManiac

    Converting string to a datetime

    2 SQLBill: and what is your system datetime format? This error occurs when system datetime format differs from "dd.mm.yyyy hh:mm:ss
  11. CrazyManiac

    Converting string to a datetime

    Hi all! I'm using CR9 and MS SQL Server. My report has two string parameter fields {?DateBegin} and {?DateEnd}. Parametrs are passed as strings with default format("dd.mm.yyyy hh:mm:ss"). When parameters are passed to a report I try to convert them to datetime (datetime function) and to pass to...
  12. CrazyManiac

    How could I know there is no data in the report

    2pgtek: Thanks for advice, but i'd like to show if there is no data in report in VB application and not to show report at all.
  13. CrazyManiac

    How could I know there is no data in the report

    I'm using CR9. Reports are viewed trough VB application. How could I know there is no data in report? If there is no data, i'd like to show some messagebox from VB application and not to print the report. Is it possible? Thanks for help.
  14. CrazyManiac

    "Save data with report" at runtime

    I've created a report using CR9. Option "Save data with report" is off. User opens a report in VB application. Is it possible to set option "Save data with report" on at runtime?
  15. CrazyManiac

    R5 - Linking one doc to another

    Try to use response (or response to response) forms
  16. CrazyManiac

    Share database on Local

    I have a database mydb.nsf in LotusNotes 5. In this application I want to open a report. Report is made in CrystalReports and connects to mydb.nsf trough NOtesSQL. When I try to open report I see a message "This database is currently being used by someone else. In order to share a Notes...
  17. CrazyManiac

    Get value by Id

    I'm using CR9 and MS SQL SERVER (OLEDB). I have two tables Countries and Sales. Countries: ID | Name 1 USA 2 GB 3 France 4 WestSamoa ...... Sales: SaleId | Customer | CustomerCountryID 1 aaa 1 2 aaa 1 3 bbb 3...
  18. CrazyManiac

    Passing an array to parameter field

    I've created some reports. They're launched from Lotus Notes database. Is it possible to pass an array of values from Lotus Script to one parameter field in report (and what type of parameter field it should be)? I've tried this script, but it doesn't work: Sub Postopen(Source As...
  19. CrazyManiac

    Changing datasource at runtime

    I've made some reports, they connect to MSSQL Server trough OLEDB/ADO. Reports are viewed from LotusNotes Application. Everything works fine , but when I try to connect to other database (with the same structure) on the same server or on other server report takes data from olddatabase. How can...

Part and Inventory Search

Back
Top