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 TouchToneTommy 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 GoDawgs

  1. GoDawgs

    Breaking up Array Cell Value

    Thanks Skip...that's what I had set up but was hoping to find something else...although I don't really know what that something else might've been. I'll work with it...thanks for the help.
  2. GoDawgs

    Breaking up Array Cell Value

    I get a daily file with hundreds of records from an outside vendor...and one of the columns in the file has arrays in each cell. Is there an easy way to break these apart? My final goal is to get them somewhat normalized (meaning a record for each of the values in the array), but I'd settle...
  3. GoDawgs

    Populating Excel with Access records VERY slow

    Thanks for everyone's help...I ran it this morning with Excel visible so I could see what was going on, and I found the culprit. After each rep I was putting in a page break (these sheets all get printed and sent to the reps)...the code worked instantly until it hit that first page break...then...
  4. GoDawgs

    Populating Excel with Access records VERY slow

    Ha ha...I thought that was a strange question...sorry, it's been a long day. No, there's nothing in the Excel file itself, it's a brand new file with column headers and nothing else. I just tried the manual calculation code...didn't change anything. Good idea to have that in there anyway...
  5. GoDawgs

    Populating Excel with Access records VERY slow

    Nope, just a variable with the name of the Excel file... TemplatePath = "\\Templates\AttCommission.xls" FilePath = "\\Reports\AttCommission-" & FullOffice & "-" & Format(Date, "yymmdd") & ".xls" FileCopy TemplatePath, FilePath
  6. GoDawgs

    Populating Excel with Access records VERY slow

    Sorry, missed your second comment. That's how I've always dumped data to specific cells...but since I've got nobody to bounce it off of, let me know if I'm missing an easier way. This is my code for opening the file and setting the sheet: Set xlApp = New Excel.Application...
  7. GoDawgs

    Populating Excel with Access records VERY slow

    Basically the "CopyFromRecordset" is out because after each rep's section there's about 8 rows of extra data/formatting to be thrown in (a big yellow box with the Rep's total, the Rep's previous balance, etc)...mostly done just to keep things looking the same way they did in the past. If I...
  8. GoDawgs

    Excel number of month

    Just format as "m", not "mm".
  9. GoDawgs

    Populating Excel with Access records VERY slow

    It's been a while since I've posted here...but I'm getting frustrated. I've got a process that dumps a bunch of records for Reps from Access into an Excel file...and in between each Rep does a bunch of formatting (that's the reason for not just dumping the entire recordset). A section of the...
  10. GoDawgs

    Combining Fields into One Column?

    Yikes...the class names shouldn't be columns to begin with...check out PHV's link before you go any further. As for the dirty answer to your question...open the table, highlight the first row, copy, paste it into Excel which will show all the column names. Then highlight the column names in...
  11. GoDawgs

    Increment double dates - weekday only

    What if you put your start date in A1, then in A2 put: =IF(WEEKDAY(A1)=6,A1+3,A1+1) Then copy that down...and do it again in column B. Then combine the two columns and sort? There might be a faster way, but that's not too bad. Hope it helps... Kevin
  12. GoDawgs

    Date criteria to compile past years quarterly spending

    Format([SignUpDate],"q yyyy") will get you the quarter for each of your dates...then you can group by that if that's what you're looking for.
  13. GoDawgs

    Copy a sheet to new file-keep formulas

    Easy enough...thanks guys.
  14. GoDawgs

    Writing to a cell based on cell above.

    The code would be the same idea...you'd start at row 1 and loop through to the end of the rows of data in your ID column...and for each cell along the way check if it's blank put in the data from the cell above, otherwise leave it alone.
  15. GoDawgs

    Copy a sheet to new file-keep formulas

    Yeah, I just thought of that. Not bad. Does anyone know a way to force Excel to not add a specific file reference? Thanks for the help Sawedoff. Kevin

Part and Inventory Search

Back
Top