|
More site info...
Excel Discussion (Misc queries) | Forum profile
|
|
Forum profile page for Excel Discussion (Misc queries) on http://excelbanter.com.
This report page is the aggregated overview from a single forum: Excel Discussion (Misc queries), 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 "Excel Discussion (Misc queries)" 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 Excel Discussion (Misc queries):
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
599
|
2,214
|
6,729
|
|
Post:
|
1,538
|
5,748
|
18,817
|
|
|
Excel Discussion (Misc queries) Posting activity graph:
|
Top authors during last week:
user's latest post:
How to make each column of data...
Published (2009-11-25 07:32:00)
Oops.my mistake...try this version Sub SplitSheet() Dim ws1 As Worksheet, ws2 As Worksheet, lngCol As Long, lngLastCol As Long Set ws1 = ActiveSheet lngLastCol = ws1.Cells.Find(What:="*", _ SearchDirection:=xlPrevious, SearchOrder:=xlByColumns).Column For lngCol = lngLastCol To 2 Step -1 Set ws2 = Worksheets.Add(After:=ws1) ws1.Columns(1).Copy ws2.Columns(1) ws1.Columns(lngCol).Copy ws2.Columns(2) Next End Sub If this post...
user's latest post:
is it possible to open a second...
Published (2009-11-24 19:31:00)
See reply to your first post. Gord Dibben MS Excel MVP On Tue, 24 Nov 2009 10:19:05 -0800,
user's latest post:
sorting numbers and numbers that...
Published (2009-11-25 08:45:00)
Are you sure that you converted the contents of the cell to text? How did you do it? Or did you merely change the format of the DISPLAY to text (which has no effect on the cell contents)? What does =ISTEXT(A2) say (& for other rows)? If they really are all text but they don't sort correctly, perhaps you have stray spaces or other non-printing characters? Does =LEN(A2) [and correspondingly for other rows] show the length you...
user's latest post:
Combining multiple rows with...
Published (2009-11-24 19:34:00)
This suggestion has lots of assumptions--if your data varies from those assumptions, you'll want to share a more detailed description of the data layout. I'm assuming that column A contains those labels. Column B contains the data to use. There are always 6 labels per entry--and they're always in the same order. If all that's true, then put this in C1: =INDEX($B:$B,(6*(ROW()-1))+(COLUMN()-2)) And drag across to column H...
user's latest post:
rows and colums
Published (2009-11-20 19:49:00)
Hide them lizfox wrote: > I'm a new user on 2003 excel. How do i change the amount of cells. I need > ten down only
user's latest post:
keeping subtotals accurate to...
Published (2009-11-25 03:25:00)
Try using the SUMIF function. ...........A..........B 1.....Bev.........5 2.....Pro..........3 3.....Bev.........2 4.....Sp...........3 5.....Bev.........2 =SUMIF(A1:A5,"Bev",B1:B5) -- Biff Microsoft Excel MVP "Amanda Fekety" > wrote in message ... > Hi, not sure how to present my question briefly.... > > I've created an inventory sheet for our restaurants with the following...
user's latest post:
Still need help - Clear a...
Published (2009-11-24 23:57:00)
Gary, Changes to Excel's macro security level do not take place immediately. After you make a change, you have to close Excel and then reopen it for the change you made to take effect. "Gary" wrote: > I guess my next question is how do i re-enable macros so this one will run? > > "JLatham" wrote: > > > The reason the cells still contained information was, as...
Jacob Skaria external usenet poster
20
user's latest post:
RANK based on result and average
Published (2009-11-22 09:43:00)
As the result is based on average marks..the below formula will work for the example/scenario mentioned... =IF(E2="Pass",RANK(F2,F$2:F$6,0),"N/A") If this post helps click Yes --------------- Jacob Skaria "Narendra Boga" wrote: > Hi All, > > I have a trouble with Rank() function. I have written normal rank function > based on "Average" column...
user's latest post:
select case
Published (2009-11-24 14:19:00)
If desired, send your file to my address below. I will only look if: 1. You send a copy of this message on an inserted sheet 2. You give me the newsgroup and the subject line 3. You send a clear explanation of what you want 4. You send before/after examples and expected results. -- Don Guillett Microsoft MVP Excel SalesAid Software
user's latest post:
drop down list
Published (2009-11-24 22:01:00)
Goto Insert - Name - Define. Select your range of cells with your list, and give it a name (MyRange). Click Add, Ok out. On your other worksheet, goto Data - Validation - List Input the following: =MyRange Ok out. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "da" wrote: > Hi > How can I create a drop down list which is on a separate worksheet but in > the...
|
|
|
|
Latest active threads on Excel Discussion (Misc queries)::
Started 4 days, 3 hours ago (2009-11-24 11:56:00)
by David Biddulph[_2_]
=TEXT(A1,"0") will turn each into text, then sort by that helper column (and
don't accept Excel's suggestion to treat text that looks like numbers as
numbers).
--
David Biddulph
"MZ" > wrote in message
...
>A column contains both strictly numbers and also numbers that are followed
> by text (e.g., row 1: 1000, row 2: 1500; row 3: 1000a; row 4: 1500a)
> Identical numbers are ...
Started 1 week, 1 day ago (2009-11-20 09:07:00)
by Per Jessen
Hi Hein
You have to use named ranges as reference in your macro.
If you name A1:A10 as Rng1 and
name A11:A20 as Rng2, then user can insert a row, in say 10 and now Rng1
will refer to A1:A11 and Rng2 will refer to A12:A21
In your macro use this:
Range("Rng1").Hide=true
Hopes this helps.
....
Per
"Hein" > skrev i meddelelsen
news
Started 3 days, 11 hours ago (2009-11-25 03:55:00)
by Jacob Skaria
You can try out the below macro. If you are new to macros..
--Set the Security level to low/medium in (Tools|Macro|Security).
--From workbook launch VBE using short-key Alt+F11.
--From menu 'Insert' a module and paste the below code.
--Get back to Workbook.
--Run macro from Tools|Macro|Run <selected macro()>
Sub SplitSheet()
Dim ws1 As Worksheet, ws2 As Worksheet, lngCol As Long,...
Started 1 week, 4 days ago (2009-11-17 06:21:00)
by Jacob Skaria
Do you mean to replace *14 to *20. Try the below..Make sure from Find and
replace>options>Lookin 'formulas' is selected
Find what
~*14
Replace with
*20
If this post helps click Yes
---------------
Jacob Skaria
"User 100" wrote:
> This is a general question on the replace function. In the Find/Replace
> dialog box, you can use wildcards to find text/formulas. There ...
Started 3 days, 10 hours ago (2009-11-25 04:27:00)
by Max
In the pivot, just drag "Data" and drop it over "Total". That should
transform it into the columnar layout that you're after. Success? hit the YES
below
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Trow" wrote:
> In the old Excel, when I created a Pivot table, I could select a report
> template where the data...
Started 3 weeks, 2 days ago (2009-11-04 17:20:00)
by Dtown Dawg external usenet poster
I can open documents fine and if I click on an already created document it is
fine, its just when I open Excel to go create a new document there are no
cells, just gray, I have to then click on Open and then the cells come up.
I can't really get to any options etc, until I open a worksheet as well.
I have tried the following:
*Detect & Repair
*Making sure "Ignore Other applications" is...
Started 3 days, 11 hours ago (2009-11-25 03:25:00)
by T. Valko
Try using the SUMIF function.
...........A..........B
1.....Bev.........5
2.....Pro..........3
3.....Bev.........2
4.....Sp...........3
5.....Bev.........2
=SUMIF(A1:A5,"Bev",B1:B5)
--
Biff
Microsoft Excel MVP
"Amanda Fekety" > wrote in message
...
> Hi, not sure how to present my question briefly....
>
> I've created an inventory sheet for our restaurants with the ...
|
|
Hot threads for last week on Excel Discussion (Misc queries)::
Started 6 days, 7 hours ago (2009-11-22 08:16:00)
by Narendra Boga[_2_] external usenet poster
Hi All,
I have a trouble with Rank() function. I have written normal rank function
based on "Average" column and working fine. But I need the rank based on the
"result" which ignore the averages of "fail" sting in Result column. I need
the result in "Rank" column as below:
Student name sub1 sub2 sub3 Result Average Rank
A 36 54 78 PASS 56.00 2
B...
Started 1 week ago (2009-11-20 22:51:00)
by Luke M
In your example, you could use:
=--(RIGHT(A2,3))
If your cells follow a pattern of:
Text(space)number
You can use:
=--(RIGHT(A2,LEN(A2)-FIND(" ",A2)))
--
Best Regards,
Luke M
*Remember to click "yes" if this post helped you!*
"April" wrote:
> Hi,
> I can't seem to remember how to use a formula to extract numbers only. For
> example, I would like to take a create a ...
Started 4 days, 11 hours ago (2009-11-24 03:41:00)
by T. Valko
Try this...
=">"&TODAY()+7
--
Biff
Microsoft Excel MVP
"Dave" > wrote in message
...
> Hi,
> XL 2003
> I am having trouble using Advanced Filter.
> Column A has Dates (formatted as date), and Column B has Names.
> I want to filter on the basis of any date being between Today and 7 days
> later.
> Not having success with this, I tried just filtering on anything greater
>...
Started 1 week, 1 day ago (2009-11-20 11:24:00)
by MS-Exl-Learner
What is the values you are having in D12 to D22?
--------------------
(Ms-Exl-Learner)
--------------------
"VivienW" wrote:
> Hello,
>
> Does anyone know why Excel sometimes give an incorrect result when adding
> the contents of cells? It may only be 1p out but even if I increase the
> decimal places it doesn't seem to make sense as the decimal places are
> showing a ...
Started 5 days, 20 hours ago (2009-11-22 18:35:00)
by Don Guillett
Your example is not clear. You do not show a before/after
I am a retired Reg Mgr for ING and held a series 7.
If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after ...
Started 1 week, 2 days ago (2009-11-19 12:09:00)
by David Biddulph[_2_]
No, you are not on the right track.
AND(A25<0) is just the same as (A25<0), as you haven't told Excel what you
want to AND with (A25<0). It isn't clear what you were trying to do.
If you need Excel help on the syntax of the AND function, look up AND in
Excel help.
You've also got a number of unnecessary parentheses, such as around
(-C25/B25) and (C25/B25). These won't do any harm, ...
Started 1 week, 2 days ago (2009-11-18 16:36:00)
by Luke M
The actual limit is 32,767 characters. Of this, only 1,024 will display in a
cell.
(info from "Excel specifications and limits" in XL help file)
Due note that when you set the format of a cell to text, this is when the
256 limit kicks in. Simply change the formatting of the cell to "General" and
then you'll be good to go.
--
Best Regards,
Luke M
*Remember to click "yes" if this ...
Started 5 days, 11 hours ago (2009-11-23 04:09:00)
by Rick Rothstein
Does this SelectionChange event code do what you want...
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = 0
Union(Target.EntireColumn, Target.EntireRow).Interior.ColorIndex = 40
End Sub
Change the ColorIndex value to suit your own personal tastes.
--
Rick (MVP - Excel)
"johnpotter94501" > wrote in
message ...
>i am a teacher and...
Started 3 days, 20 hours ago (2009-11-24 18:19:00)
by David Biddulph[_2_]
I guess that you've got text (rather than numbers) in some of the cells in
column C. Tht would explain the #VALUE! error, and also explains the slight
misalignment that you've got in the data you supplied. By default, text
aligns to the left and numbers to the right.
You can check with =ISTEXT(A2) and =ISNUMBER(A2) , each copied down the rest
of the rows. If you have a text string ...
Started 4 days, 1 hour ago (2009-11-24 14:06:00)
by David Biddulph[_2_]
=SUMPRODUCT(((YEAR(A6:A100)=2009)*(MONTH(A6:A100)> =7))+((YEAR(A6:A100)=2010)*(MONTH(A6:A100)<=6))*(B 6:B100="u")*C6:C100)
or
=SUMPRODUCT((TEXT(A6:A100,"yyyymm")>="200907")*(T E XT(A6:A100,"yyyymm")<="201006")*(B6:B100="u")*C6:C 100)
--
David Biddulph
"mePenny" > wrote in message
...
>I have this formula below that deals with finding calendar year. I need a
> formula that does ...
|
|