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. gall3on

    One Form for Multiple Entries

    I need some form help since I'm very new at creating forms in Access. I want to design a form that will allow me to create multiple records from one entry for efficiency's sake. For example, I want to create a new "Store" record for several cities. How can I design a form that will likely use...
  2. gall3on

    Requery SubForm After Update

    Hm, nevermind. I figured it out. I replaced " DoCmd.Requery "Projects_NoLeads"" with Forms![Home]![Projects_NoLeads].Form.Requery Thanks!
  3. gall3on

    Requery SubForm After Update

    I'm not sure what you mean by saving normally. Essentially I have a 'Save' button on a ProjectDetails form. What I want to happen is whenever this Save action is done, another form (which is essentially a Home form) with a subform will get updated (using a requery) automatically as a...
  4. gall3on

    Requery SubForm After Update

    I have a main form display which contains a subform list of projects that have a field that needs to be corrected. How can I automatically requery that subform after a user updates a project with the needed correction? Right now, my main form can take care of this by using a main form Refresh...
  5. gall3on

    Month Order ID via SubQuery

    I've been working on an excel calendar project that's now migrating into access. Essentially, I have a table of events entered by various users and I need to create a report/view of such events by month. The table collects the following basic info: created by: date start: event name: date...
  6. gall3on

    Conditional Format Against an Array Set

    Thanks a bunch! It's been driving me crazy all day! Thank you Thank you Thank you!
  7. gall3on

    Conditional Format Against an Array Set

    Hi, I'm trying to conditionally format a column of text cells where if the value belongs to a named range, it will highlight the cell. Here's the example: Column to Format Dog Catfish Elephant Goldfish Betta Fish Tiger Mammals: Dog, Elephant, Tiger So if the values under the column to...
  8. gall3on

    How to Get Multiple Values Based on Criteria

    Without using Macros/VB, is there a formula that can filter a table by a specific field and grab all the 'returned' results from a different column and paste them in a different worksheet? For Example: Test Name Month Start ABC 1 DEF 1 GHI 1 JKL 2 ACD...
  9. gall3on

    How to Combine Cells into a Single String with Commas

    I have a column of number values in Excel that grows over time. Example: Web IDs 1243 34565 2334 2357 Because of some reporting restrictions with another software, I have to constantly copy each cell value to a reporting field, with each value separated by a comma. Example: Enter IDs to...
  10. gall3on

    SQL For Getting Records in a Date Range

    Wow, that was a pretty awesome solution. Thanks Golom!
  11. gall3on

    SQL For Getting Records in a Date Range

    Hi, I'm still feeling my way around SQL and need some assistance. I have the following SQL below: SELECT [All SOS with All CIDs].Date, [All SOS with All CIDs].SOS, sum([All SOS with All CIDs].Sumits) AS Submits INTO [Two Weeks] FROM [All SOS with All CIDs] WHERE ((([All SOS with All...
  12. gall3on

    Showing the Formula Based on Values from Different Worksheets

    Nevermind. I've figured it out. I realized that you can set the formula on the backend using Row and Column references. IE: ActiveCell.FormulaR1C1 = "=SUM(R[-2]C:R[-1]C)" Thanks though!
  13. gall3on

    Showing the Formula Based on Values from Different Worksheets

    I'm trying to create a macro that will perform calculations for an invoice. I know that I can do much of the calculations in the back end within a script, but I'm writing the macro for my boss who would be interested in seeing the formulas in the Excel Spreadsheet. Here's my main problem. For...
  14. gall3on

    Unique Lookup or Different Method

    Thanks a bunch! That Index/Match formula worked perfectly!
  15. gall3on

    Unique Lookup or Different Method

    I'm not that familiar with vLookups so my previous attempts failed at using it. I'm not sure this would even work since my 'return' value needs to be a value that happens to be located left of the lookup value. I have a table with values that correspond to dates. I wanted to find the max...
  16. gall3on

    Populate Date For Data Grouping from Web Table

    I was considering automating this but since I have a short ETC for the report for now, I will have to forego the VB script or do it steps by steps. Thanks for the info though! I got the temporary solution that I need.
  17. gall3on

    Populate Date For Data Grouping from Web Table

    I have a table that has data copied from a webpage table report. The table when pasted in Excel has a format like this: Date Group ColX ColY 10/31 A 1 3 B 2 5 C 4 2 11/1 A 1 0 C 2 1 11/2 B...
  18. gall3on

    Select All Macro

    Hm, I actually thought I did post it in the VBA forum. Sorry about that! And thanks for the Cell Select info. I went ahead and changed the VB script altogether because of formatting issues.
  19. gall3on

    Select All Macro

    Probably silly question... I know in Excel, there's a function to Select All using Cntrl+A selecting cells that are not empty. What is the VB equivalent for this if I try to get this in a Macro? I've tried recording it and looked at the code, but all it does is define a range to select (EG...
  20. gall3on

    Macro Help for Finding and Deleting Specific Columns

    I used a variation of Skip's script: dim sHead(1), i dim r as range. sFindText as string Head(0) = "head1" Head(1) = "head2" for i = 0 to 1 set r = sheet1.rows(1).find(Head(i)) if not r is nothing then r.entirecolumn.delete shift:=xlleft next But realized a flaw that needs to be addressed...

Part and Inventory Search

Back
Top