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

Thread: Median formula in microsoft.public.excel.misc

Started 1 month, 1 week ago by Trev
I need a formula that will give me median if Column C on Sheet 1 =sold. Any ideas? Thanks Trev
Site: Discussions in microsoft.public.excel.misc  Discussions in microsoft.public.excel.misc - site profile
Forum: microsoft.public.excel.misc  microsoft.public.excel.misc - forum profile
Total authors: 1656 authors
Total thread posts: 7 posts
Thread activity: 768 new posts during last week
Domain info for: microsoft.com

Other posts in this thread:

Jacob Skaria replied 3 months, 1 week ago
Install the MSCOMCT2.OCX file in the user's Microsoft Windows System or System32 directory. and then it should be available in the reference list.. Few alternates... http://www.rondebruin.nl/calendar.htm http://isamrad.com/ExcelCal/default.htm If this post helps click Yes --------------- Jacob Skaria...

forest8 replied 3 months, 1 week ago
This is what I needed. Thank you. "Jacob Skaria" wrote: > Install the MSCOMCT2.OCX file in the user's Microsoft Windows System or > System32 directory. and then it should be available in the reference list.. > > Few alternates... > http://www.rondebruin.nl/calendar.htm > http://isamrad.com/...

Ken replied 3 months, 1 week ago
Yes ... I have used similar formula before ... However, I am having a problem writing into my existing formula ... Can you provide guidance ... Thanks ... Kha "Jacob Skaria" wrote: > Please note that this is an array formula. Within the cell in edit mode (F2) > paste this formula and press Ctrl+Shift+Enter to apply this ...

Sean NWIC replied 3 months, 1 week ago
How can I make them all Capital letters? "Jacob Skaria" wrote: > Try > > =LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE),1)&" > "&LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE),4) > > If this post helps click Yes > --------------- > Jacob Skaria > > > "Sean NWIC" wrote: >...

Jacob Skaria replied 3 months, 1 week ago
=UPPER(LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE ),1)&" "&LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE),4 )) If this post helps click Yes --------------- Jacob Skaria "Sean NWIC" wrote: > How can I make them all Capital letters? > > > "Jacob Skaria" wrote: > > > Try > >...

Pete_UK replied 3 months, 1 week ago
Put UPPER( ... ) around the formula that Jacob gave you. Hope this helps. Pete On Sep 2, 7:11 pm, Sean NWIC <SeanN...@discussions.microsoft.com> wrote: > How can I make them all Capital letters? > > > > "Jacob Skaria" wrote: > > Try > > > =LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE...

something68 replied 3 months, 1 week ago
=SUMIF(B11:O11,"H",B12:O12)&", "&SUMIF(B11:O11,"AL",B12:O12)&", "&SUMIF(B11:O11,"MO",B12:O12). I think I had to remember to change the range of cells from "E11" to "O11" - sorry, my fault. Also, I think I tried your suggestion below. This total, I do not want to show "8, 8". I would like to show the total of two different ...

denilynn replied 3 months, 1 week ago
Very cool! You saved me hours! -- Thanks in advance for your time! denilynn "Jacob Skaria" wrote: > --Select the range of dates which needs to be corrected. > --From menu Data>Text to Columns will populate the 'Convert Text to Columns > Wizard' Hit Next>Next will take you to Step 3 of 3 of the Wizard....

denilynn replied 3 months, 1 week ago
This worked! Thanks!! -- Thanks in advance for your time! denilynn "Luke M" wrote: > something like this: > > =DATE(LEFT(A2,4),MID(A2,5,2),RIGHT(A2,2)) > > will convert to a standard XL date. > -- > Best Regards, > > Luke M > *Remember to click "yes" if this post ...

mcaicedo replied 3 months, 1 week ago
Hi Jacob, Thanks for your reply. Below is what I am expecting: Column A Column B Column C 100058-0020 100058-0020 CC3101 wrong 100069-0020 100069-0020 100072-0020 100072-0020 7040 7040 100312-0010 100312-0010 100313 100313 72101...

 

Top contributing authors

Name
Posts
Jacob Skaria
325
user's latest post:
Matching column in different...
Published (2009-12-13 06:20:00)
&nbsp; Try the below formula in Sheet4 A1 and copy to the right and down as required..The formula will populate date with reference to Sheet1; if the same colA info is present in Sheet2 and Sheet3 =IF(AND(COUNTIF(Sheet1!$A:$A,Sheet1!$A1), COUNTIF(Sheet2!$A:$A,Sheet1!$A1), COUNTIF(Sheet3!$A:$A,Sheet1!$A1)),Sheet1!A1,&quot;&quot;)
Gord Dibben
187
user's latest post:
Cells that don't auto go...
Published (2009-12-12 12:01:00)
&nbsp; Set the cells to wrap text and the rows to autofit. Gord Dibben MS Excel MVP On Sat, 12 Dec 2009 09:40:01 -0800, lostsoul62 &lt;lostsoul62@discussions.microsoft.com&gt; wrote: &gt;I will edit a cell by taking some info out and then I have a cell with 100 &gt;points of space and I only need 14 because I'm doing 14 point fonts. So I do &gt;a text wrap and the info just jumps up and down but the cell...
David Biddulph
183
user's latest post:
How do I reference a cell as a...
Published (2009-12-13 11:26:00)
&nbsp; =SQRT(SUM(INDIRECT(&quot;F&quot;&amp;M3&amp;&quot;:F&quot;&amp;N3))/(N3-M3))
Dave Peterson
181
user's latest post:
Formula is changing to text when...
Published (2009-12-11 13:01:00)
&nbsp; If you're sure you're not looking at formulas, then reformat the cell as General and reenter the formula--selecting the cell, hitting F2, then enter should be enough. Saved from a previous post. Excel likes to help. Try this on a test worksheet. Select A1 and hit ctrl-; (to put the date in the cell) now select B1 and type: =a1 Notice that excel changed the format of B1 to match the format in A1. Now format D1 as Text. put...
Luke M
126
user's latest post:
Overtime in...
Published (2009-12-11 09:57:00)
&nbsp; Assuming you've already calculated the amount of overtime in cell C2 (something like =a2-a1-&quot;8:00&quot;) The formula you need for desired result is: =MROUND(C2-1/288,1/48) Explain: 1/288 ~ 5 minutes. This is subtracted to cause numbers in the 15-19 range to get knocked down to the 10-14 range (similarly is knock 45-49 down to 40-44). 1/48 = 30 minutes. The formula then round the difference from previous operation...
T. Valko
125
user's latest post:
Year as well as month in formula...
Published (2009-12-13 14:46:00)
&nbsp; You're welcome. Thanks for the feedback!
Mike H
115
user's latest post:
Prefixing a number to the number...
Published (2009-12-13 13:31:00)
&nbsp; Hi, The answer depends on what you want to do with this prefixed number if it's purely for show then apply a custom format of (say) &quot;99999&quot;&amp;# Now any number will have the prefix of 99999 If that doesn't do it for you then post back Mike &quot;Sherees&quot; wrote: &gt; I have in column A, 1000 numbers, now i need to prefix an identical number to &gt; all the 1000 numbers in A...
Gary''s Student
96
user's latest post:
Format cells for hexadecimal...
Published (2009-12-10 02:23:00)
&nbsp; Text
מיכאל (מיקי) אבידן
83
user's latest post:
Inserting function into...
Published (2009-12-14 03:06:00)
&nbsp; Sorry for the TYPO. Change the third row into: For Row = LR To 2 Step -1 Micky &gt; Follow, slowly, and try to understand the code in the attached picture: &gt; http://img130.imageshack.us/img130/8758/nonames.png &gt; Micky &gt; &gt; &gt; &quot;John mac&quot; wrote: &gt; &gt; &gt; I am trying to write macro that will loop through a worksheet active rows and &gt; &gt; insert a...
MS-Exl-Learner
81
user's latest post:
Average Multiple Worksheets...
Published (2009-12-14 03:11:00)
&nbsp; Assume that you are having values in A1:A10 like the below (A1:A10) 66 0 88 0 (Blank) 0 0 99 (Blank) 0 Use the formula like this, which will ignore blank cells and 0 (zero) values. =SUM(A1:A10)/(COUNT(A1:A10)-COUNTIF(A1:A10,0)) Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- &quot;Shawn S.&quot; wrote: &gt; Have a workbook where each worksheet is a day of the month....

Related threads on "Discussions in microsoft.public.excel.misc":

Related threads on other sites:

Thread profile page for "Median formula in microsoft.public.excel.misc" on http://www.microsoft.com/communities/newsgroups.... This report page is a snippet summary view from a single thread "Median formula in microsoft.public.excel.misc", located on the Message Board at http://www.microsoft.com/communities/newsgroups.... This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity