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 SkipVought 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. MrBillSC

    Printing the current date in page footer - Access 2010

    I have just converted an Access 2000 database to Access 2010. The reports all had the current date printed in the page footer (=Date()). The 2010 version prompts me for "Date" and then prints "#Name?" in its place. If I delete the date field from the page footer and try to insert "Date and...
  2. MrBillSC

    left outer join

    I am new to writing xml code. I am linking two tables and I want to select the first table records whether or not there are linked records in the second table. When I enter the following code the report give me errors: <table type="left_outer_join"> <table type="table"...
  3. MrBillSC

    I need to select records based on a substring value using xml code.

    Hi All, I am using xml code to retrieve records from a database and will display them in a report. I only want to select records where the 5th character in "VP_Permits.TypeCode" = "G". I can't seem to figure this one out. Can anyone help? Thanks, mrBill
  4. MrBillSC

    DB1.mdb,DB2.mdb,DB3.mdb - What is causing this?

    I think I found the answer from searching through other similar questions. Hope I didn't waste anyones time. mrbill
  5. MrBillSC

    DB1.mdb,DB2.mdb,DB3.mdb - What is causing this?

    Some of our Access databases (Access 2000) seem to automatically generate copies of themselves. What causes this to happen? Not all of them do this. Thank you, mrbill
  6. MrBillSC

    Formula Field

    Have you tried using the DistinctCount summary function? MrBill
  7. MrBillSC

    Display customers with 2+ transactions

    Try the following: Group on {table.empl_num}, {table.case_num} Open the select expert and click on "Show Formula". Click on "Group Selection". Click on "Formula Editor". In formula editor enter: DistinctCount({table.case_num},{table.empl_num} >= 2 Save and exit. This should suppress...
  8. MrBillSC

    Running total not capturing last record in group

    If you want to capture the last record of the second group try "Use a formula" in the evaluate section: // Check for Type changing from Null to a value. (IsNull({Table.Type}) and Next({Table.Type}) > "") or // Check for Type changing values. {Table.Type} <> Next({Table.Type}) or // Check...
  9. MrBillSC

    Default Printer Issue

    Have a programmer open the report. On your menu bar click File > Print Setup. Check the No Printer box and Click OK. Save the report. MrBill
  10. MrBillSC

    calculating expected student grade level from DOB

    To calculate age as of Jan 31, try the following: // formula Age: If Month({table.BIRTH_DATE}) > 1 then DateDiff("yyyy",{table.BIRTH_DATE},Today) else DateDiff("yyyy",{table.BIRTH_DATE},Today) + 1 MrBill
  11. MrBillSC

    Formula to show correct month data

    Try: If Month({Delivery.Promised_Date}) = Month(Today) and Year({Delivery.Promised_Date}) = Year(Today) then {Delivery.Promised_Quantity}*{Job.Unit_Price} MrBill
  12. MrBillSC

    Orphaned Group Header in multiple column subreport

    If you don't want a new column for each group you could try the following: 1. Insert a section below your group header and expand to the same size as your detail section. 2. Copy and past detail section field into your new group header section "b" so it looks identical to the detail section...
  13. MrBillSC

    Reset Date Variable

    Assuming you are grouping on Item_Num, place the item_num field in detail section. In group footer place a formula: Maximum({table.last_recvc},{table.item_num)
  14. MrBillSC

    Page footer issue

    Create a formula called LegalEntity01 //formual LegalEntity01 If {table.PCap} = 1.00 then {table.LegalEntity} else " " Place the formula LegalEntity01 in your detail section. You will probably want to suppress printing it. Right click on the formula and select Insert > Summary. Select...
  15. MrBillSC

    Change date/time field to only date field

    If you only want to display the date part of the date/time field you can simply change the format by placing the field on your report and right clicking. Select "format field". Then select a format that only displays the date. MrBill
  16. MrBillSC

    CAN YOU EXPORT A PIPE DELIMITED FILE FROM CRXI?

    You should be able to do it by creating a text formula similar to this: //formula: MyData Trim({Table.TextField1}) + "|" + Trim({Table.TextField2}) + "|" + ToText({Table.NumField3}) + "|" + etc. Then display this as the only field in the report and export it into a text file. MrBill
  17. MrBillSC

    Report Criteria Or statement

    I don't know what you mean by "pull back". Can you explain? MrBill
  18. MrBillSC

    Details on first page

    I think you will need to use a subreport to do this. I suggest you place the subreport in the report header as page 1. It can probably be done with a crosstab report. Select the "new page after" option for the report header section. The main report will group on region, month and display the...
  19. MrBillSC

    Resetting a Time variable

    Try: whileprintingrecords; shared timevar proc_start_time := Time(0,0,0) MrBill
  20. MrBillSC

    Updating Fields from multiple tables to SIngle Table

    When I have replaced multiple tables with a view I have added the view to a copy of the existing report, and linked to the view from a field in the primary table of the report. Then I replace each table field on the report and in all formulas, groups and sorts with the corresponding field in...

Part and Inventory Search

Back
Top