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 strongm 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. 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...
  15. missprogrammer

    DarkSun (Programmer) Please Reply

    Okay the situation is that I'm pull this information from an Olap Cube using MDX quering and VBA. The code is going through a loop and creating several worksheets within the workbook(Totaling 8 workbooks). This will be ran everyweek. The Clients wants to shade the blank cells red. What type of...
  16. missprogrammer

    logic problem PLEASE HELP

    I can not figure out how to select the last four columns.The code below stores the first column, but from there i want to select the next 3 column. Within the column i want to select the cells that are null and where the cell is not already black and turn red If .cells(y - 1, x) <>...
  17. missprogrammer

    Please Reply

    Within my workbook i have serveral worksheets that have several columns and the last the colums on each worksheet i want to color red where it is null what should i do. Please Reply
  18. missprogrammer

    Loop through Excel workbook to center(Please Help)

    I'm having problems with my code, Im getting a compile error next without for. What am i missing I trying to loop the code through the workbook on all the sheets Please help,Thanks in advance Private Sub CenterCells() Dim c As Integer For c = 1 To...
  19. missprogrammer

    calculations

    If anyone can help please reply. I have financial report and every where that there is a zero they want &quot;-&quot; to be showninstead. now the problem is that i also have a subreport. at the end i want to do a grand total sum from the totals. but the problem is that...

Part and Inventory Search

Back
Top