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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by missprogrammer

  1. missprogrammer

    What am I doing wrong?

    BRAInDead values are assigned strRegion = "Special Account" intRound = 82 After I made the changes you suggested it's running but ONCE AGAIN no value
  2. missprogrammer

    What am I doing wrong?

    This query is running but it is not retuning a value. Is there something wrong with my "having" clause It returns a value when I just have the Round(intRound) alone, but when I include the Region(strRegion) it does not return any value. What am I doing wrong? Dim intRound As Integer...
  3. missprogrammer

    passing a sting to sql code

    WsRecordset.Open _ Source:="SELECT DISTINCT Count(dbo_F2KCube_Calls.CallID) " & _ "FROM OUTLETPROGRAM INNER JOIN dbo_F2KCube_Calls " & _ "ON (OUTLETPROGRAM.CallID = dbo_F2KCube_Calls.CallID) " & _...
  4. missprogrammer

    AccessIsFun - -call me stupid, but I dont understand.

    sorry, should of been more detailed. I am pasting my results of several recordsets into excel using vba. My thing is I wont know how may records exist in each recordset. So I can I find the last used cell or fist empty cell. AccessIsFun (Programmer) Nov 19, 2001 You could count the...
  5. missprogrammer

    finding the first empy cell in a column

    AccessIsFun;call me stupid, but I dont understand.
  6. missprogrammer

    finding the first empy cell in a column

    sorry, should of been more detailed. I am pasting my results of several recordsets into excel using vba. My thing is I wont know how may records exist in each recordset. So I can I find the last used cell or fist empty cell.
  7. missprogrammer

    finding the first empy cell in a column

    can you help me to get started on finding the first empy cell in a column
  8. missprogrammer

    doing the right thing

    okay, quys you to have lost me...So what exactly is your conclusion....
  9. missprogrammer

    doing the right thing

    well, what i did the first time is probably stupid, and the more i think about it I wonder why I approached the situation like that.. But, I am learning... I have the db already in SQL an odbc conn. and i linked the tables in access(which is what i did the first time). But anyway the report I am...
  10. missprogrammer

    doing the right thing

    I run this report weekly and I want to increase the processing time. I dont know if the way I did it the first time was the best way, I created a connection to a SQL Database using Access(ado). Would it have been better for me to use VBA using a sql to the sql tables... by doing so would this...
  11. missprogrammer

    creating multiple queries in vba

    Thank you so much Dutt, one more thing. This is working find. I run this report weekly and I want to increase the processing time. I dont know if the way I did it the first time was the best way. But I created a connection to a SQL Database using Access. Would it have been better for me to use...
  12. missprogrammer

    creating multiple queries in vba

    I am new to vba and I want to create multiple queries in vba using ado connection and export the results into excel spreadsheet.
  13. missprogrammer

    DarkSun (Programmer) Please Reply

    DarkSun no I dont. Not only That how would i specify only the to incude the next 3 columns. I dont want to shade in anything outside of the range
  14. missprogrammer

    DarkSun (Programmer) Please Reply

    The column count will differ for each sheet(possibly evertime its ran) Private Sub Check() Call ChangeColor(1, 10) End Sub Private Sub ChangeColor(MyCol As Integer, MaxRows As Long) For i = 1 To MaxRows If ActiveSheet.Cells(i, MyCol).Value = "" And ActiveSheet.Cells(i...

Part and Inventory Search

Back
Top