Search results

  1. G

    Returning Counts of different criteria

    Sweet, thanks :) I think this is exactly what i was looking for.
  2. G

    Returning Counts of different criteria

    Thanks Adam, i havent used those before, i'll have to look it up.
  3. G

    Returning Counts of different criteria

    Hi, I have a query built and what i want to do is count the number of records that meet date criteria. To illustrate, these are the fields i need Company, Branch, Count of records within past month, Count of records within past 3 months, count of records within past year, Count of records...
  4. G

    Allow Edits, deletions, additions properties change by themselves

    Hi, I've got a database that has a form with multiple subforms on it, and on occasion the properties on one of the subforms will change so that Allow edits, deletions, and additions gets set to "no", i can change them back and save the form, but it eventually happens again. I've read of this...
  5. G

    Export field as a number when exporting to excel

    Thats great, thanks!! CDbl(DLookUp("[UV]","[Tbl_UVs]","[UV_Date]=#" & DateAdd("D",-1,DateAdd("M",-1,DateAdd("D",1,[UV_Date]))) & "# and [SDIO]='" & Forms!Frm_Funds!SDIO & "'")) AS [Prior Month UV] just for completeness in case anyone else needs it. :)
  6. G

    Export field as a number when exporting to excel

    Oops, beat me to it. Thanks very much. :)
  7. G

    Export field as a number when exporting to excel

    The field is actually pulling a "double" data type, is there a similar converter for that?? Thanks very much for the quick responses.
  8. G

    Export field as a number when exporting to excel

    [CODE] SELECT Tbl_Funds.Cusip, Tbl_UVs.SDIO, Tbl_Funds.[Fund Name], Tbl_UVs.UV_Date, Tbl_UVs.UV, DLookUp("[UV]","[Tbl_UVs]","[UV_Date]=#" & DateAdd("D",-1,DateAdd("M",-1,DateAdd("D",1,[UV_Date]))) & "# and [SDIO]='" & Forms!Frm_Funds!SDIO & "'") AS [Prior Month UV], ([UV]/[Prior Month UV])-1 AS...
  9. G

    Export field as a number when exporting to excel

    I have a query that when i export to an excel file has a calculated field that shows up as a "number stored as text" error, is there a way i can format that field so that when it exports it is exported as a number?? Thanks for your help in advance!!
  10. G

    Example VB Script to show records like *AAA*

    Beautiful, thanks very much, thats exactly what i was looking for.
  11. G

    Example VB Script to show records like *AAA*

    I'm looking for the VB syntax, I've tried a number of things stLinkCriteria = "[Case Name]=" & "*" stLinkCriteria = "[Case Name]=" & "'*'" to start just to try to find the syntax. Can i use "Like" in that Visual Basic statement??
  12. G

    Example VB Script to show records like *AAA*

    Hi, i have a button that i want to open a form and only show records that have *AAA* in a certain field, and i cant get the wildcard characters to work...can someone post an example so i can see the syntax?? Thanks for the help.
  13. G

    Default value of a parameter in a query

    Hi, I have a query set up right now to accept a user's input for a specific field on a report, and i'd like that inputbox to default to a certain text string based on an expression. Right now it always shows up as blank. Can i do this??
  14. G

    Report subtotal "#Error"

    Thanks for the responses guys, I've tried the NZ function to no avail, if i remember correctly that fixes "#Value" errors, not "#Error". I also played around with your suggestion, Paul, but was not able to get that to show anything other than the same "#Error" value. Here is what i just...
  15. G

    Report subtotal "#Error"

    Hi, I have a set of individual reports that are combined to create one whole report. There is a summary page, and then subsequent breakdowns of each of the summary points on following pages. When one of the breakdowns does not have any information to show, the subtotal and total sections at...
  16. G

    Format Query Results

    Thanks I'll give that a try...
  17. G

    Format Query Results

    I have a button with the following code: stDocName = "Qry_PerformanceForSelectedCaseGROSS_ISIS_REVISION" stFileName = "\\Fss-cfs1\indprod\Fund Information\Fund Performance\Working Doc\Monthly ISIS\ISIS Update " & mnth2 & " " & yr & " DATABASE OUTPUT.xls" DoCmd.TransferSpreadsheet acExport...
  18. G

    Format Query Results

    Hi, I have a mutual fund performance query that calculates fund performance over a specified time. I then export this query to a spreadsheet. When exported, the normal view of the performance result wold show up as .0006 rather than .06%, so i used the FormatPercent() function around my...
  19. G

    Best way to finish this code to export report...

    Hi, I have the following code used to print a report using Adobe PDF, everything works fine, but i'm not sure how to save the file to a certain directory as a specific filename. Here is the lowdown of what i am doing, i have to run reports for a number of different clients, i have a control...
  20. G

    Different font/bold/underline within control

    Ok, figured it was worth a shot, i thought there may be something like the DateFormat() function where i could just name that specific piece of text as Bold or something. Thanks for the help, if anyone else has any way to do this i'd appreciate the input.
Top Bottom