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 IamaSherpa 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. CZahrobsky

    Access Report Coding

    I tend to cast nulls by converting them to stringa and then using the Val() function. Try this: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) lblCalc.Caption = iif(Val(Text71 & "")<Val(Text71a & ""), Round(Val(Text71 & "")), Round(Val(Text71a & ""))) lblCalc1.Caption =...
  2. CZahrobsky

    Backup and search queries in Microsoft Access

    I use this subroutine a lot to create searchable backups of all of my Access queries. That way, if a table gets refactored, I can update all of my field references through code. '************************************************ ' subCodeSQL '************************************************...

Part and Inventory Search

Back
Top