Search results

  1. R

    Query Math With Dates

    I'd say that your query is not build according to your requirements ;) RV
  2. R

    Since I hit the limits of MS Access databases now routinely

    Seems to me that you're turning company issues into yours. You will be better of to leave them for what they are (as it's not your problem), start seeking backup or get yourself another your. And yeah, IT projects tend to take some time ;) RV
  3. R

    Whats wrong with this query?

    Not sure which environment you're using (Access or SQL Server or whatever). Anyway, you're using non-existing data types. For instance, Access doesn't have a varchar datatype. SWL Server doesn't have a datatype memo. Rv
  4. R

    Field Returns No Data-Need to then Show as 0

    How did you try? Post your query including the Nz function. RV
  5. R

    Can moderators purge spam and block spam posters?

    He's still an unknown quantity though :D RV
  6. R

    Link MS Project File to Form

    Glad to help ;) RV
  7. R

    Query Question

    How 'bout PARAMETERS [spSubSystemHours] Text ( 255 ), [UserEntry] Text ( 255 ); UPDATE tblSubSystem SET tblSubSystem.SubSystemHours = [spSubSystemDetails]&UserEntry WHERE tblSubSystem.SubSystemDetails=[spSubSystemDetails]; RV
  8. R

    Data from multiple tables without relationships

    Paul, any data you put on a tab page relates back to the record source of your form. In other words, what you're trying to achieve is not possible. Your request doesn't make sense, as your tab pages should only show related data. RV
  9. R

    Link MS Project File to Form

    Open your form in design view. Open the Properties window. Select the Format tab page. Set the property Is Hyperlink of your text box to Yes. Add a Double Click Event to your text box, add code which is: Application.FollowHyperlink Me.nameoftextbox RV
  10. R

    Problem with calculation from date criteria

    Use this as an expression in a query column: IIF(Day(JoinDate)>15, DateSerial(Year(JoinDate)+1, Month(JoinDate)+1, 1), DateSerial(Year(JoinDate)+1, Month(JoinDate),1)) Could be that you need to replace the comma's by semi colons. RV
  11. R

    Null / Non Existent values and Query woes.

    The answer is LEFT JOINS. Here's what your query basically should look like in SQL. You'll need to use the Nz function on each SUM plus some sort of formatting to reflect your calculated amounts in the appropiate format. I'll leave that up to you ;) SELECT tblSalesinfo.SaleRefID...
  12. R

    Clear data in a complete yes/no column

    Actually, your English is quite good, as is quite common for Dutchies ;) BTW, there is an excellent forum in Dutch that deals with Access, Excel, Word, to mention a few. Check it out : http://office.webforums.nl/forum/index.php RV (also proud to be Dutch :D )
  13. R

    Confiration Number with 3 parts?

    You'll need to write a function in VBA. Have a look at the Randomize statement to generate randomized numbers. Or search the forum. RV
  14. R

    Duplicates

  15. R

    Auto-Enter Previous Record Date

    You need the # signs in VBA to identify your variable as a date string. RV
  16. R

    totalling the hours

    Search the forum, questions on time and date calculations have been asked before 'bout a zillion times ;) RV
  17. R

    On Change question

    Use the After Update event. RV
  18. R

    Auto-Enter Previous Record Date

    Put this code in the On Open event of your form: Me.[Invoice Date].DefaultValue = "=#" & Format(Date, "dd-mm-yyyy") & "#" And put this code in the Before Update event of your Invoice Date field: Me.[Invoice Date].DefaultValue = "=#" & Format(Me.[Invoice Date], "dd-mm-yyyy") & "#" RV
  19. R

    Duplicates

    Seems like a bit of overkill to me ;) This will do fine: SELECT T1.* FROM MyTable AS T1 WHERE EXISTS ( SELECT * FROM MyTable AS T2 WHERE T2.mfr_num=T1.mfr_num AND T2.catalog_code=T1.catalog_code ) This statement will also run a bit faster ;) RV
  20. R

    Please help Error message "Method or member not found"

    Have you checked upon the control box name? And oh, next time post your thread in the appropiate forum ;) RV
Back
Top Bottom