|
More site info...
New Users to Excel | Forum profile
|
|
Forum profile page for New Users to Excel on http://excelbanter.com.
This report page is the aggregated overview from a single forum: New Users to Excel, located on the Message Board at http://excelbanter.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 "New Users to Excel" on the Message Board at http://excelbanter.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.
|
|
|
|
|
Posting activity on New Users to Excel:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
63
|
247
|
637
|
|
Post:
|
132
|
591
|
1,536
|
|
|
New Users to Excel Posting activity graph:
|
Top authors during last week:
user's latest post:
automate cell to divide by 1000
Published (2009-11-28 18:25:00)
Private Sub Worksheet_Change(ByVal Target As Range) Const WS_RANGE As String = "A1:A10" Dim cell As Range On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then For Each cell In Target cell.Value = cell.Value / 1000 Next cell End If ws_exit: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the above...
user's latest post:
how do I display negative...
Published (2009-11-28 19:54:00)
One way... =MAX(0,your_formula) =MAX(0,B1-A1) -- Biff Microsoft Excel MVP "Ken" > wrote in message ... > If a formula gives me a negative number, I want to disply it as zero. > Can > you show me how to make that work? In other words, if a formula creates a > value of > "-14", I want it to show up as "0" in the cell.
user's latest post:
Macros for template
Published (2009-11-21 19:36:00)
I have a Template for the 52 Weeks that i created if i want to change something in Template is it possible to have the 52 other sheets change as well through Macro,s if possible How
user's latest post:
Calculus spreadsheet
Published (2009-11-27 15:31:00)
1) http://www.esm.psu.edu/courses/emch1...uler-tutorial/ 2) Google with: Excel Euler's method 3) Send me private email and I will send you a PDF of the relevant chapter from my book 4) Buy my book <grin> best wishes -- Bernard Liengme http://people.stfx.ca/bliengme Microsoft Excel MVP "Blair" > wrote in message ... > Hey everyone, > > I have a math project I am doing. This is...
user's latest post:
Naming ranges on multiple...
Published (2009-11-23 21:47:00)
Use local/worksheet level names. Select the range and include the sheet name in the namebox when you create the name, like: 'Sheet 99'!myNameHere Jim wrote: > > I have a workbook with multiple worksheets, the worksheets are structured > identical to each other. I need to name certain ranges in each of the > worksheets. On the first worksheet, I was able to name the ranges without > difficulity,...
user's latest post:
Mark Rows for scrolling
Published (2009-11-23 01:35:00)
Thanks Dave, I'm just now getting around to reading your memo. I probably just set it up wrong. I may have clicked on the "number" on the extreme left of the sheet instead of an active cell. I'll give it another try tomorrow and let you know how I come out. Thanks again, Doug "Dave Peterson" > wrote in message ... > I'm not sure what mark means here, but freeze panes will freeze...
user's latest post:
filter multiple values
Published (2009-11-24 15:19:00)
Sunir, Well, then, that is your criteria. Create your list of critical jobs of interest (on perhaps, another sheet named Critical Jobs), and use a formula like =NOT(ISERROR(MATCH(CellValue,ListOfCriticalBackUpJ obs,False))) like =NOT(ISERROR(MATCH(A2,'Critical Jobs'!$A$2:$A$400,False))) and filter your list to show those that return TRUE. -- HTH, Bernie MS Excel MVP "Sunir M S" > wrote in message ......
user's latest post:
data from many work books
Published (2009-11-23 14:11:00)
This can be done with VBA code (a macro). You haven't given enough information to provide a more detailed answer, but there is one command available that does allow you to browse and identify files to be worked with that will probably end up in the code: Application.GetOpenFilename will return a filename from a dialog box, and then the code can open that file and perform operations to copy information from that file into another...
user's latest post:
filter multiple values
Published (2009-11-24 07:23:00)
HI Bernie Actually thers no logic other than string matches. I am a backup administrator. I receive a report of about 1000 database backup job status at the end of day with completed times and date. Out of that i have some 400 critical backup jobs that i am interested in which has to be filtered out and published and the rest should be removed. What i do is a tedious task of deleting each job that is not critical one by one to finally have a...
wolf_tracks@invalid.com
3
|
|
|
|
Latest active threads on New Users to Excel::
Started 1 day, 13 hours ago (2009-11-28 17:35:00)
by FloMM2
Ken,
If your formula is as follows:
"=A1-B1"
You would need to edit as follows:
"=IF((A1-B1)>0,(A1-B1),0)"
What this tells excel is, if A1-B1 is greater than 0 (True), then give me
that result. If A1-B1 is greater than 0 (False), then give me a 0.
hth
"Ken" wrote:
> If a formula gives me a negative number, I want to disply it as zero. Can
> you show me how to make that ...
Started 2 days, 23 hours ago (2009-11-27 07:56:00)
by Ed Ferrero[_3_]
Hi Rohit,
> eg in cell A1, if i enter 1000,000 then the outcome should be 1,000.
Use a custom number format.
More number formats, then select Custom, then enter
#,##0,
including the trailing comma.
Ed Ferrero
www.edferrero.com
Started 1 day, 18 hours ago (2009-11-28 12:40:00)
by Andy Pope
Hi,
Check the Review tab, the worksheet may be protected.
Check you do not have multiple sheets selected, [Group] will be
displayed in the title bar is you have.
Cheers
Andy
Akcath wrote:
> I'm trying to do a " what-if analysis" for my beginning Excel class and when I
> click on the appropriate cell and then the Data ribbon, all of the options
> are greyed out. While ...
Started 2 days, 8 hours ago (2009-11-27 22:43:00)
by T. Valko
See if this does what you want...
...........A..........B
1.......10...........
2......................
3........5............
4.......10.........X
5.......15.........Y
6....................Z
A1 = lookup value
=INDEX(B4:B6,MATCH(A1,A3:A5,0))
Result = Y
--
Biff
Microsoft Excel MVP
"Pete" > wrote in message
...
> Can anyone give me a formula that will return the ...
Started 1 week, 1 day ago (2009-11-22 05:04:00)
by T. Valko
If this data is imported from another application is the date/time stamp a
true Excel date/time?
If C2 is a date/time stamp what is the result of this formula:
=ISNUMBER(C2)
Can you post a small example of your data with the expected result? Don't
really need the Device/SubDevice data. Just the date/time and the X/Y data
--
Biff
Microsoft Excel MVP
"markd951" > wrote in ...
Started 2 days, 13 hours ago (2009-11-27 17:16:00)
by Gary''s Student
Tools > Commands > Edit
then drag the Find button to your toolbar
--
Gary''s Student - gsnu200909
"bintight" wrote:
> I own Excel 2000, but for some reason when I had to install it after my old
> computer crashed I couldn't use the "search workbook" function.
> (Edit-Find-look in workbook).
> Can someone let me know how I can get this function back?
Started 2 days, 15 hours ago (2009-11-27 15:47:00)
by Otto Moehrbach[_2_]
Provide more details about what you have in what columns, what columns are
hidden, what your sort parameters are, what you do when you sort, what
happens when you sort, and what you want to happen when you sort. I tried
sorting a number of columns, with some columns hidden, and all sorted
correctly. HTH Otto
" zyzzyva" > wrote in message
...
> PP 2007
>
> Why doesn't a Sort ...
Started 2 days, 15 hours ago (2009-11-27 15:24:00)
by trip_to_tokyo[_3_]
In EXCEL 2007 try this:-
Home group / Fornt - single left hand clik on the arrow in the lower right
hand corner / Format Cells should launch / Fill tab / Fill Effects . . . /
make your choice and hit OK / OK once more.
You should now have what you want.
Please hit Yes if my comments have helped.
Thanks!
"Gene L." wrote:
> Is there a method in Office Excel 2007 to ...
|
|
Hot threads for last week on New Users to Excel::
Started 2 weeks, 3 days ago (2009-11-12 16:34:00)
by Bernie Deitrick
Sunir,
I'm not sure what you want, but you can always use a column of helper cells that return TRUE or
FALSE depending on a criteria, if you criteria is very complex and cannot be solved using one of the
custom filters available.
Let's say that you have a list of names that you want to show - use a formula like this
=NOT(ISERROR(MATCH(NameValue,NameList,False)))
Like
=NOT(...
Started 1 week, 1 day ago (2009-11-22 05:04:00)
by T. Valko
If this data is imported from another application is the date/time stamp a
true Excel date/time?
If C2 is a date/time stamp what is the result of this formula:
=ISNUMBER(C2)
Can you post a small example of your data with the expected result? Don't
really need the Device/SubDevice data. Just the date/time and the X/Y data
--
Biff
Microsoft Excel MVP
"markd951" > wrote in ...
Started 6 days, 3 hours ago (2009-11-24 03:19:00)
by T. Valko
In A7 enter =A1-F1 or =F1-A1.
Copy across to D7 then down to A10 10.
--
Biff
Microsoft Excel MVP
> wrote in message
...
> Is it possible to easily subtract two tables and place the results into
> another table? I have two 4x4 tables. The left corners are at A1 and F1. I
> would like the result to appear in the corner at A7.
> --
> Wayne Watson (Watson ...
Started 6 days, 10 hours ago (2009-11-23 20:38:00)
by Peo Sjoblom[_3_]
In B2 put
="MJTB"&1001+(ROWS($B$1:B1)*1001)
copy down 235 rows, select the range and copy and paste special as values in
place
for the second use
="MJTB"&2044+(ROWS($B$1:B1)*1000)
repeat the copy and pasting.
Note that $B$1:B1 has nothing to do with the firs value being in B1 it just
generates row numbers
--
Regards,
Peo Sjoblom
"...
Started 6 days, 10 hours ago (2009-11-23 20:51:00)
by Gord Dibben
One method
On sheet1 Insert>Name>Define MyName
Refers to: =INDIRECT("A1:F20")
Note: won't show up in NameBox or in Edit>Go To or F5
Must be typed into refedit dialog.
Gord Dibben MS Excel MVP
On Mon, 23 Nov 2009 11:12:03 -0800, Jim >
wrote:
>I have a workbook with multiple worksheets, the worksheets are structured
>identical to each other. I need to name certain ...
Started 2 days, 23 hours ago (2009-11-27 07:56:00)
by Ed Ferrero[_3_]
Hi Rohit,
> eg in cell A1, if i enter 1000,000 then the outcome should be 1,000.
Use a custom number format.
More number formats, then select Custom, then enter
#,##0,
including the trailing comma.
Ed Ferrero
www.edferrero.com
Started 1 week, 1 day ago (2009-11-21 20:11:00)
by Bernie Deitrick
Mike,
Sorry, that just isn't clear. Perhaps a formula
=SUM(A1: A37)/A1
where A1 to A37 have your number 997?
Bernie
"Mike" > wrote in message
...
>I am trying to sum up 37 cells to = 1 each for each cell ex. if i put say
>997
> in cells i want them to = 1 each so that the sum total = 37 if i put 997
> or
> any other # in cells
Started 1 week, 1 day ago (2009-11-22 02:39:00)
by Dave Peterson
I'm not sure what mark means here, but freeze panes will freeze rows above the
activecell and to the left of the activecell.
So if you meant that you selected rows 1:4, then it would only matter what cell
was the activecell. If that activecell is in row 4, then rows 1:3 would be
frozen.
(You can select a multicell range and tab through that selection to experiment.)
And you may be ...
Started 6 days, 16 hours ago (2009-11-23 14:04:00)
by Bernard Liengme
Move to B2, use command Window | Freeze Pane
Now as you scroll vertically or horizontally, row 1 and column A are always
visible
This is from Excel 2003 but I seem to recall doing the same in Excel 97
best wishes
--
Bernard Liengme
http://people.stfx.ca/bliengme
Microsoft Excel MVP
"SlickRCBD" > wrote in message
...
> Is it not possible to freeze the titles at the top of the ...
Started 1 week ago (2009-11-22 21:01:00)
by Gord Dibben
The $ signs make a cell reference Absolute so it does not change as you copy
the formula.
=B11*$C$4 will increment as =B12*$C$4 as you drag/copy down the column.
The B11 will increment and $C$4 will remain fixed.
See help on absolute and relative cell references.
Gord Dibben MS Excel MVP
On Sun, 22 Nov 2009 11:52:37 -0800, David Deley > wrote:
>=B11*$C$4
>
>I get the ...
|
|