Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Excel Programming | Forum profile

Forum profile page for Excel Programming on http://www.excelforum.com. This report page is the aggregated overview from a single forum: Excel Programming, located on the Message Board at http://www.excelforum.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Excel Programming" on the Message Board at http://www.excelforum.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: Excel Help Forum - Excel Programming (site profile, domain info excelforum.com)
Title: Excel Programming
Url: http://www.excelforum.com/excel-programming/
Users activity: 34 posts per thread
Forum activity: 765 active threads during last week
 

Posting activity on Excel Programming:

  Week Month 3 Months
Threads: 765 2,461 6,836
Post: 2,523 8,011 23,314
 

Excel Programming Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
DonkeyOte
132
user's latest post:
Use VBA to call hyperlink where...
Published (2009-11-25 12:45:00)
Thanks for posting your resolution but going forward please be sure to use CODE tags - I have on this occasion added them for you. FWIW I would have suggested / opted for something like: Code: Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean) Dim rngDates As Range Select Case UCase(Sh.Name) Case "JAN", "FEB", "MAR",...
shg
98
user's latest post:
variable scope within functions
Published (2009-11-25 19:01:00)
I should add that if the variables don't need to be seen outside the module in which they are declared, replace Public with Dim
JBeaucaire
74
user's latest post:
if/then formula containing...
Published (2009-11-25 18:32:00)
Hi Caboose, welcome to the forum. It's not lame, it's just not as clear as you'd think. Does A1 have multiple values in it? Mockup a sample workbook showing the dilemma and your desired results , be sure to represent all the "variations" you want covered in the sample data. Click GO ADVANCED and use the paperclip icon to post up your workbook.
Leith Ross
58
user's latest post:
Auto-insert rows &...
Published (2009-11-25 22:47:00)
Hello Brendon, This is a large workbook with a complex layout. You will not receive a solution in few hours for a project like this. It will probably take a day or two before someone codes a possible solution. Be patient.
broro183
45
user's latest post:
Speed up Script that lookups up...
Published (2009-11-20 09:12:00)
hi 65,000 rows is a lot of rows for Sumproduct to evaluate. Does your file actually have data in all these rows? If not, I recommend including the below code in a normal module: Code: option explicit Function LastCell(ws As Worksheet) As Range ' sourced from http://www.beyondtechnology.com/geeks012.shtml 'to identify the lastcell on a worksheet (& not necessarily the active sheet) Dim LastRow As Long Dim LastCol As Long...
Richard Buttrey
44
user's latest post:
Concatenate cells using vba in...
Published (2009-11-24 11:38:00)
Hi, Please note the forum rules about meaningful titles. I have changed it for you as this is your first post. with Joe in A1, Bloggs in B1 and the email in C1, use Code: =A1&"."&B1&"@"&RIGHT(C1,LEN(C1)-FIND("@",C1)) Rgds
romperstomper
43
user's latest post:
Stop calculations
Published (2009-11-25 12:17:00)
I would recommend it, personally, if you want to ensure your workbook is accurate.
davesexcel
38
user's latest post:
problems with hyperlinks linking...
Published (2009-11-25 22:58:00)
There are only 37 Worksheets in your example, Column A needs to be cleared before you run the rest of the code.
jaslake
37
user's latest post:
Compare sheets
Published (2009-11-25 22:05:00)
Hi moutoncito I was browsing this evening and remembered your post. If you haven't found a solution, look at this http://www.cpearson.com/excel/MergeListsToDistinct.aspx and see if it might have application to your issue. John
teylyn
35
user's latest post:
Calculate working hours.
Published (2009-11-25 21:54:00)
use =G2-F2 and format the result with custom format h "Hr:" mm "Mins" Or, if you want hour and minutes in differnt cells, use =HOUR(G2-F2) =MINUTE(G2-F2) hth
 

Latest active threads on Excel Programming::

Excel Help Forum
Started 2 days, 5 hours ago (2009-11-25 12:55:00)  by Palmetto
It would help if you upload a sample workbook that duplicates the sheet structure and includes some data (don't need all ten sheets). It would be best, IMO, if you consolidated the data into one worksheet as this would vastly simplify the task.
Thread:  Show this thread (4 posts)   Thread info: Compare numbers to a tolerance range Size: 314 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Compare numbers to a tolerance range :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 2 days, 6 hours ago (2009-11-25 12:06:00)  by solnajeff
Hi If there is a space in a sheet name you need the name to have single quotes in order to work. Change the line of code in your workbook that starts with sname to Code: sName = "'" & wsht.Name & "'" & "!A1" this adds the single quotes and it works okay. regards Jeff
Thread:  Show this thread (3 posts)   Thread info: problems with hyperlinks linking to other worksheets Size: 806 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: problems with hyperlinks linking to other worksheets :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 2 weeks, 2 days ago (2009-11-10 20:45:00)  by JBeaucaire
Hi Brendon. Based on your explanation, I do think VBA will be the only way to get that going on. To help you, we'll need a full set of example data sheets showing before/after/after...as many sample sheets as required to visually demonstrate all your needs. Click GO ADVANCED and use the paperclip icon to post up your workbook.
Thread:  Show this thread (7 posts)   Thread info: Auto-insert rows & contextual copying Size: 420 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Auto-insert rows & contextual copying :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 1 day, 19 hours ago (2009-11-25 22:23:00)  by protonLeah
Code: Option Explicit Sub Parse() 'JBeaucaire (11/11/2009) 'Based on column C, data is filtered to individual sheets 'Creates sheets and sorts alphabetically in workbook Dim LR As Long, i As Long, MyArr Dim MyCount As Long, ws As Worksheet Application.ScreenUpdating = False Set ws = Sheets("total students") ws.Activate ...
Thread:  Show this thread (2 posts)   Thread info: Splitting one worksheet into many and adding a function Size: 4,350 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Splitting one worksheet into many and adding a function :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 1 day, 23 hours ago (2009-11-25 19:14:00)  by rylo
Hi This makes a couple of assumptions, but see if it is getting close to what you want. Code: Sub aaa() Dim OutSH As Worksheet Set OutSH = Sheets("Sheet3") OutSH.Cells.ClearContents 'compare sheet1 with sheet2 Sheets("sheet1").Activate For Each ce In Range("A2:F" & Cells(Rows.Count, "F").End(xlUp).Row) Set findit = Sheets("Sheet2").Range("A:F").Find(...
Thread:  Show this thread (3 posts)   Thread info: Compare sheets Size: 1,443 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Compare sheets :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 2 days, 4 hours ago (2009-11-25 14:12:00)  by munkee
code updated with tags
Thread:  Show this thread (5 posts)   Thread info: Macro to save duplicate file and create folder name based on cell value Size: 75 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Macro to save duplicate file and create folder name based on cell value :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 1 day, 20 hours ago (2009-11-25 21:54:00)  by teylyn
use =G2-F2 and format the result with custom format h "Hr:" mm "Mins" Or, if you want hour and minutes in differnt cells, use =HOUR(G2-F2) =MINUTE(G2-F2) hth
Thread:  Show this thread (2 posts)   Thread info: Calculate working hours. Size: 349 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Calculate working hours. :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 1 week ago (2009-11-20 13:23:00)  by adam2308 Forum Contributor
Please Register to Remove these Ads I have a form with various textboxes and combo-boxes and a command button to enter the details into some cells. What is the best way of writing some vba code to check all textboxes and combo's are entered before carrying on with entering the data. If any details are not entered then a message box should show and take the user...
Thread:  Show this thread (8 posts)   Thread info: Best way of checking all entries on for are entered Size: 856 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Best way of checking all entries on for are entered :: Excel Programming :: Excel Help Forum"
Excel Help Forum
Started 2 days, 3 hours ago (2009-11-25 14:54:00)  by mrice
Maybe you need just... Code: With Range("Start") For i = 1 To CountReferences + 1 .Offset(i, 0) = Application.VLookup _ (WatchesReferenceStart, Worksheets("Sheet1").Range("A:B"), 2, 0) Next i End With
Thread:  Show this thread (3 posts)   Thread info: Using Dynamic VLookup with VBA Size: 730 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Using Dynamic VLookup with VBA :: Excel Programming :: Excel Help Forum"
 

Hot threads for last week on Excel Programming::

Excel Programming
Started 1 week, 1 day ago (2009-11-19 15:14:00)  by losmi8
Also, IF A=Mike and B=Tel instead, then I wouldn't want to multiply C and D. I would like the code to skip that row and continue searching for where A=Mike and B=Fax and only then do the =C*D. And of course, I need to add up all of the results (so all the C*D's). If anyone needs further explanation of what I need, please say so. I know I am explaining this in a very confusing way. ...
Thread:  Show this thread (38 posts)   Thread info: manipulating ranges/arrays with if/then statements? Size: 578 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: manipulating ranges/arrays with if/then statements? :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 1 week ago (2009-11-19 20:45:00)  by davesexcel
Can you supply a sample workbook, so somebody can help you?
Thread:  Show this thread (28 posts)   Thread info: Form a customer list from invoices Size: 112 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Form a customer list from invoices :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 1 week ago (2009-11-20 00:33:00)  by Nigel Registered User
Please Register to Remove these Ads I have a workbook with around 350 worksheets. A column in the main sheet contains a list of part numbers which correspond to the names of the worksheet tabs. When a cell on the main sheet containing a part number is selected I would like a macro to find the corresponding worksheet, move that worksheet to the end of the row of tabs...
Thread:  Show this thread (23 posts)   Thread info: macro to select worksheet Size: 955 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "macro to select worksheet :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 4 days, 6 hours ago (2009-11-23 12:10:00)  by shg
I think you cannot have a range description that long. Code: With Union(Range(first half), Range(second half))
Thread:  Show this thread (18 posts)   Thread info: Macro to format cells from large range Size: 531 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Macro to format cells from large range :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 3 days, 21 hours ago (2009-11-23 20:41:00)  by Richard Buttrey
Hi, Yes, just declare another variable. e.g. Code: Dim dG20 as Double ' then dG20 = Range("G20") + c.Offset(0, 3).Value 'and then Range("G21") = "=" & dG20 & "/ SUMPRODUCT(--(A2:A29=""Mike""),--(B2:B29=""Fax"")) " HTH
Thread:  Show this thread (18 posts)   Thread info: storing a variable as a range to be used later Size: 750 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: storing a variable as a range to be used later :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 4 days, 14 hours ago (2009-11-23 03:23:00)  by JeanRage
Hi, I would recommend a step-by-step approach ... since you are tackling too many things at the same time ... Try to stick to your initial deals list, which already requires the combination of an event macro to detect your 100 bp, a macro to avoid duplicates and a macro for the copy pastevalues to another sheet ... HTH
Thread:  Show this thread (18 posts)   Thread info: Conditional Copy-Paste for Stock Trading project Size: 415 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Conditional Copy-Paste for Stock Trading project :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 1 week ago (2009-11-20 07:11:00)  by blue-bullet Registered User
Please Register to Remove these Ads Hi again, now i have this formula: =COUNTIF(INDIRECT(A2&"_RES"),"Yes") A2 refers to a cell to complete the indirect query (DCA_RES) which refers to another range in the workbook. Now I want to have count if A2&"_INIT" is "BB" AND if A2&"RES" is "YES" So that I get the amount of records of resolved queries (Yes) ...
Thread:  Show this thread (17 posts)   Thread info: Countif referance two cells Size: 996 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Countif referance two cells :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 1 week, 1 day ago (2009-11-19 11:08:00)  by mewingkitty
Quote: 1 1343 1359 1407 1758 2040 1341 1 John, Doe Maker Chambers TeleTops x-ray 09/16/1987 2 2 1343 1345 1358 1359 1407 1418 2 Hoe, Drill NJ Nose Bleed Bruise Deck 04/23/1980 5 3 1758 2040 1341 3 Dexter, Tom NY 3 Might want to post an actual workbook instead of typing it out. As I'm sure you can see, this is not in fact what you ...
Thread:  Show this thread (17 posts)   Thread info: Transposing Problem Size: 900 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Transposing Problem :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 1 week ago (2009-11-20 02:52:00)  by Brane Ded Registered User
Please Register to Remove these Ads I am setting up a spreadsheet to be able to calculate loads on spread footings. The thing is the footings may be as small as a 2 x 2 or as large as a 6 x 6 or any combination inbetween so I need a coordinate system (to the nearest inch with a max of 1800 inches) to be able to assign each spread footing to a certain spot in the ...
Thread:  Show this thread (17 posts)   Thread info: How would I properly setup a 2D coordinate system? Size: 1,503 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "How would I properly setup a 2D coordinate system? :: Excel Programming :: Excel Help Forum"
Excel Programming
Started 5 days, 7 hours ago (2009-11-22 11:08:00)  by Bob@Sun Bob@Sun is offline Registered User
Please Register to Remove these Ads Hello, I have 3 worksheets: Income; Expense; Consolidate. In the first two sheets i am entering, by dates, quantities that are getting in and out of the warehouse. My code copies that information in the consolidated sheet. What I need is to make a code that Calculates the "Daily Quantities" and "Rent", based ...
Thread:  Show this thread (16 posts)   Thread info: Calculating Daily Quantities Size: 996 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Calculating Daily Quantities :: Excel Programming :: Excel Help Forum"

This page was found by:   "unable to set the installed property of the addin class"