|
More site info...
microsoft.public.excel.programming | Forum profile
|
|
Forum profile page for microsoft.public.excel.programming on http://www.microsoft.com/communities/newsgroups....
This report page is the aggregated overview from a single forum: microsoft.public.excel.programming, located on the Message Board at http://www.microsoft.com/communities/newsgroups....
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 "microsoft.public.excel.programming" on the Message Board at http://www.microsoft.com/communities/newsgroups... 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.
|
|
|
|
|
Posting activity on microsoft.public.excel.programming:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
276
|
1,092
|
3,830
|
|
Post:
|
705
|
3,112
|
12,029
|
|
|
microsoft.public.excel.programming Posting activity graph:
|
Top authors during last week:
user's latest post:
Select and Delete in...
Published (2009-11-09 23:24:00)
Cheers. If this post helps click Yes --------------- Jacob Skaria "Seeker" wrote: > Hi Jacob, > I found the reason, changed Row(IngRow).Delete to Rows(IngRow).Delete, now > it works. Thanks very much. > Rgds > > "Seeker" wrote: > > > Hi Jacob, > > Thanks for your prompt reply and sorry for the duplicated post as it...
user's latest post:
Excel Add-In in...
Published (2009-11-06 08:32:00)
Save the add-in to a shared location - users can go to tools/add-ins and browse to your add-in, copying a copy to their C drive when prompted. To create a menu, use something like the following in the workbook open event: On Error Resume Next Application.CommandBars("Worksheet Menu Bar").Controls("My Menu").Delete On Error GoTo 0 Dim wsmb As CommandBar Dim myMen As CommandBarControl Set wsmb =...
user's latest post:
Multiple IF functions in one? in...
Published (2009-11-06 12:07:00)
Hi, Try this which assumes your data are in A2 - B2 =B2*LOOKUP(A2,{"B10","B12","B16"},{0.000616,0.000888,0.001579}) You can add more conditions to meet the requirements of your 'etc' "Big Davie" wrote: > Hi > > I hope someone can help with the following little problem of calculating > Column 3? > > Column 1...
user's latest post:
2003 vs 2007 Shape Selection...
Published (2009-11-07 08:42:00)
You'll get an error if you aren't on the worksheet where the line is. Have you checked that? -- HTH, Barb Reinhardt "MikeZz" wrote: > Hi, > I modifed a routine I found in the internet to draw lines between to cells. > It works perfectly in excel 2003 but 2007 I get the following error: > Method 'Select' of object 'Shape' failed. Run time Error. >...
user's latest post:
Reference Command Button in...
Published (2009-11-04 15:39:00)
Not a problem. But my reply serves a couple of purposes. First, it tells you that you do have a response and second, it tells others that you have a response. CR wrote: > > Sorry about the double post. > It was my first post using Giganews. When I hit send on the first one I got > an error saying my password was wrong and it couldn't send. I retyped my > password and recived no error the...
user's latest post:
Copy Data from Sheet 1 to Empty...
Published (2009-11-04 15:39:00)
With Sheets("REQUEST LOG").cells(rows.count,"C").End(xlup).Offset(1) ..value = range("G7").Value End With the first line say go to the end (bottom) of the column, go uo to the last cell in that column, then down to the next available "dtoland" <drewtoland@gmail.com> wrote in message...
user's latest post:
VBA code to ungroup multiple...
Published (2009-11-04 15:40:00)
I responded to your message back in the original thread... are you saying you can't see it? Here it is again... "No, you didn't miss anything... I did. Sorry for the confusion, but apparently I misread the original post and then made my comment based on my misreading." -- Rick (MVP - Excel) "Charlie" <Charlie@discussions.microsoft.com> wrote in message...
user's latest post:
Populate userform fields from...
Published (2009-11-06 13:59:00)
Hi All, I have a userform designed in excel, and I want to pull certain info from access database based on what I put in Student_ID field. Here is what I have so far for getting fields autopopulate based on what I put in Student_ID field... What I want it to do is.. On excel userform.. when I input the Student_ID Number, I want certain other fields like, Student name, Subjects taken etc. related to that ID to auto populate from an...
user's latest post:
VBA code to ungroup multiple...
Published (2009-11-04 13:30:00)
Hey Rick, I didn't understand your post under "VBA mid() function" on 11/2/09. Did I miss something? "Rick Rothstein" wrote: > How many groupings do you have? Are you trying to get rid of them all? Does > this, perhaps, do what you want? > > Selection.Rows.ClearOutline > > -- > Rick (MVP - Excel) > > >...
user's latest post:
sorting data in columns in...
Published (2009-11-08 06:03:00)
I posted the response at both Microsoft and the Codecage because some of my responses at Theodecasge haven't been posted at the microsoft site. The code below take the data from a source sheet and puts the Results on the Destinaton sheet. Change the SrcSht and DestSht as required. Sub GetCounts() Set SrcSht = Sheets("sheet1") Set DestSht = Sheets("sheet2") 'put header row into...
|
|
|
|
Latest active threads on microsoft.public.excel.programming::
Started 15 hours, 38 minutes ago (2009-11-10 11:26:00)
by Matthew Herbert
Still_learning,
As an FYI, please don't post multiple threads for the same question (which,
including this post, equals 5!). Repeating posts from the same poster get
rather annoying for those who read/respond to posts within the forum. Often
times, responders won't respond to posters who repost the same question
multiple ...
Started 15 hours, 43 minutes ago (2009-11-10 11:21:00)
by Bernard Liengme
Have a look at Chip's stuff about duplicates on www.cpearson.com
best wishes
--
Bernard Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
"Abdul" <abdulsalam.abdullah@gmail.com> wrote in message
news:c7957fbc-7062-41cc-928b-234e59cb80a1@w19g20 00yqk.googlegroups.com...
>I have data in two sheets, say ...
Started 15 hours, 48 minutes ago (2009-11-10 11:16:00)
by Matthew Herbert
Amy,
You can try something along the lines of what is below. I'm using a file
filter of *.csv, but you can change the file extension to be what you need it
to be. (Depending on how your data is setup, e.g. csv file or formatted data
with formulas, there maybe faster ways to accomplish this task).
Best,
...
Started 16 hours, 13 minutes ago (2009-11-10 10:51:00)
by Matthew Herbert
DavidH56,
Try something along the lines of what is listed below. (The code is
untested).
Best,
Matthew Herbert
Dim strFName As String
Select Case Weekday(Now())
Case 1, 7
strFName = "C:\Daily Report\Archives\DAILY REPORT" & Format(Date,
"dd-mmm-yyyy") & ".xls"
...
Started 16 hours, 4 minutes ago (2009-11-10 11:00:00)
by B Lynn B
It will be easier to help if you post the code you're using to populate them.
"Merlynsdad" wrote:
> I'm populating listboxes and want to reduce screen flicker. If I populate
> them between the screenupdating=false and screenupdating=true commands, the
> items in the listboxes aren't displayed. If I don't use the screenupdating...
Started 16 hours, 29 minutes ago (2009-11-10 10:35:00)
by Jacob Skaria
Try the below
Dim wb As Workbook
Set wb = Workbooks.Add
wb.Activate
If this post helps click Yes
---------------
Jacob Skaria
"Stephen" wrote:
> Hi Folks,
>
> I have a macro that opens a new workbook and copies info from its source to
> the new workbook before renaming the ...
Started 18 hours, 34 minutes ago (2009-11-10 08:30:00)
by Sam Wilson
Hi,
I've posted this to your other threads:
Sub SummariseYear()
Application.DisplayAlerts = False
Dim xwb As Workbook
Dim xws As Worksheet
Set xwb = ActiveWorkbook
Set xws = xwb. Worksheets("a")
Dim wb As Workbook
Dim ws As Worksheet
Dim sPath As String
Dim sFile(11) As ...
Started 18 hours, 1 minute ago (2009-11-10 09:03:00)
by Jacob Skaria
Try the below..
c.Offset(0, 2).Formula = Evaluate("=SUMPRODUCT(" & _
"('BO Download'!B" & DIregion_sRow & ":B" & BOReport_lastRow & _
"=""" & c.Value & """)*" & "('BO Download'!F" & DIregion_sRow & _
":F" & BOReport_lastRow & "=""" & c.Offset(0, 1) & """)*" & _
"('BO Download'!H" & DIregion_sRow & ":H" & _
BOReport_lastRow &...
|
|
Hot threads for last week on microsoft.public.excel.programming::
Started 6 days, 18 hours ago (2009-11-04 08:17:00)
by Sam Wilson
Spaces do matter.
Try
int = cint(trim(string(3))
"Philosophaie" wrote:
> I have a string:
>
> string(3) = "543"
>
> I try to change it to an integer:
>
> int = cint(string(3))
>
> It gives me a 'Type Mismatch' Error.
>
> Maybe there may be spaces before ...
Started 1 week, 1 day ago (2009-11-02 07:45:00)
by Tom Hutchins
One way...
Format column A with a custom format: ##-###-##-##
Select column A. Select Format >> Conditional Formatting. Change 'Cell Value
Is' to 'Formula Is' and enter this formula in the box next to it:
=(OR(LEN(A1)=0,ISNUMBER(A1)=TRUE))=FALSE
Click the Format button. On the Patterns tab, click red. Click OK to ...
Started 6 days, 16 hours ago (2009-11-04 10:14:00)
by Patrick Molloy
Application.DisplayAlerts=False
Worksheets("PLANID ").Delete
Worksheets("FEETOTAL ").Delete
Application.DisplayAlerts=True
"Jodie" <Jodie@discussions.microsoft.com> wrote in message
news:0494FA42-4192-4E81-B74A-A831AD4F3E2D@microso ft.com...
> How can I delete sheets with the names PLANID or FEETOTAL through VBA?
> --
> Thank ...
Started 4 days, 18 hours ago (2009-11-06 08:31:00)
by Jacob Skaria
Try the below
Sub Macro()
Range(String(3, Chr(64 + Range("A5")))).Select
End Sub
If this post helps click Yes
---------------
Jacob Skaria
"Elton Law" wrote:
> Dear Expert,
>
> I am writing a marco but get stuck in one part.
>
> Address A1 to C2 is defined the name as ...
Started 1 week, 1 day ago (2009-11-02 09:26:00)
by Jacob Skaria
If you are looking to find a string in another string use INSTR()..Check out
the help on VBA InStr()
If this post helps click Yes
---------------
Jacob Skaria
"vello" wrote:
> Using XP & Excel2002 to find a string in another string, gets me weird results:
> Dim S As String
> Dim L As Long...
Started 19 hours, 15 minutes ago (2009-11-10 07:49:00)
by Greg Snidow
Just realized a mistype. Rating should be "weak efficient" for *2* decimal
places, not 3 as stated above. Sorry for the confusion.
"Greg Snidow" wrote:
> Greetings all. I am having a rounding problem, I think. There are two
> values to be evaluated, "Theta" and "Slack". If Theta = 1 *and* Slack = 0
> then the rating...
Started 5 days, 12 hours ago (2009-11-05 14:12:00)
by John
see if this does what you want. Suggest that you make back-up of your data
before testing.
Sub DeleteData()
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Dim StartRow As Long
Dim EndRow As Long
Dim Lr As Long
Dim FoundCell As Range
Dim Search As String
Dim icount As Long...
Started 5 days, 14 hours ago (2009-11-05 12:45:00)
by Matthew Herbert
Steve,
Are you saying that you want TopCell to be reset if you move to the next
column after searching the rows? You have the "verbage" to reset the object
in the code, i.e. Nothing. A range is an object, and objects are cleared
from memory (i.e. "reset") with the Nothing keyword. (Both ToCell and
BotCell are dimensioned ...
Started 1 week, 1 day ago (2009-11-02 11:37:00)
by Mike H
Hi,
Try this
ActiveWorkbook.SaveAs Filename:=Left(Sheets("Sheet1").Range("A1"), 3) & ".xls"
Mike
" Jodie" wrote:
> I would like to write a macro to save an excel file with the name being equal
> to the first 3 digits of cell A1. Can this be done?
> --
> Thank you, Jodie...
Started 1 week, 1 day ago (2009-11-02 12:20:00)
by John Bundy
If there is no data after what is in parenthesis then
mystring = Sheet1.Cells(i, 1)
Sheet1.Cells(i, 2) = Split(mystring, "(")(0)
--
-John http://www.jmbundy.blogspot.com/
Please rate when your question is answered to help us and others know what
is helpful.
"Dave L" wrote:
> I'm writing a ...
|
|