Search:

Type: Posts; User: mikerickson; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    1,002

    You can't specify the font size for the combo box...

    You can't specify the font size for the combo box from the Forms toolbar, the only way to increase the font size is to increase the zoom percentage for the worksheet.
    Actualy, in Excel 2004, one can...
  2. Replies
    2
    Views
    279

    perhaps SalesmansDiscount =...

    perhaps

    SalesmansDiscount = MIN(totalDiscount/2, .05)

    CompanyDiscount = totalDiscount - SalesmansDiscount
  3. Replies
    6
    Views
    471

    You might also try TextToColumns, setting format...

    You might also try TextToColumns, setting format General in the last dialog screen, to do a quick conversion from text to number.
  4. Replies
    7
    Views
    476

    http://en.wikipedia.org/wiki/Greedy_algorithm

    http://en.wikipedia.org/wiki/Greedy_algorithm
  5. Replies
    4
    Views
    348

    Both Advanced Filter and the database functions...

    Both Advanced Filter and the database functions (e.g. DSUM) treat naked text (e.g. "Cat") in the criteria fields as if there were wildcards.
    "Cat" returns the same as "=Cat*".

    I suspect that it...
  6. Replies
    3
    Views
    278

    You could make ws1 and ws2 functions rather than...

    You could make ws1 and ws2 functions rather than variables.
  7. Re: Numers in front of existing text (Office 7)

    Try formatting the column with the custom format "123"@
    (quotes included)
  8. Replies
    3
    Views
    485

    Re: SUMIFS Based on Two Conditions (2007)

    I don't have 2007 so this is untested. It looks like the dates in A4:A20 are Excel serial dates, rather than the text that formula is testing against....
  9. Replies
    6
    Views
    883

    Re: sum If based on criteria (Excel 2003)

    The formula =SUMIF(C:C,1,H:H) will return the total Profit Sharing for group 1.
  10. Replies
    6
    Views
    649

    Re: Reverse MATCH (Excel2003/2007)

    This form handles a range that starts after column A.

    {=MAX((myRange="B")*COLUMN(myRange)) - (COLUMN(myRange)-1)}
  11. Replies
    4
    Views
    1,139

    Re: SUMIF Visible Cells (2007)

    I couldn't convert your workbook. However,

    If you wanted SUMIF(A1:A10, "x", B1:B10) to be restricted to the visible rows only, you could create a helper column C, where C1 = SUBTOTAL(109,B1) and...
  12. Replies
    6
    Views
    329

    Re: Listbox control Userform (2002 xp)

    Perhaps something like
    <pre>Private Sub ListBox1_Click()
    With Me.ListBox1
    If .ListIndex = 1 Then .ListIndex = 3
    End With
    End Sub</pre>
  13. Replies
    3
    Views
    224

    Re: GET part of string (2000)

    =Trim(Split(myVar,"(")(0))
  14. Re: Show gradation of percentage (2003 or 2007)

    Enter numbers from 0-1 in column B of the attached or change the current values.
  15. Replies
    7
    Views
    310

    Re: Name occuring for 2 codes (2003)

    =IF(SUMPRODUCT(--(A1:A1000="Smith"),--(B1:B1000="H2014"))*SUMPRODUCT(--(A1:A1000="Smith"),--(B1:B1000="H2015"))<>0,"Duplicate","All same")
  16. Replies
    3
    Views
    257

    Re: FIND only 4 left part of cells (2000)

    If SERV is a variable,

    With WW.Columns("O:O")
    Set Found_Index = .Cells(Application.Match(SERV & "*", .Cells, 0), 1)
    End With

    If "SERV" is the string you want to match,

    With...
  17. Re: Return Number based on Text (Excel 2003)

    =VLOOKUP(A1,{"None",0;"Heat",1;"Melt",2;"Growth",3;"Anneal",4;"Cool",5;"E_cool",6},2,FALSE)
  18. Replies
    2
    Views
    318

    Re: Color Index (Excel XP 2002)

    This works for me
    Userform1.Label1.BackColor = Range("A1").Interior.Color
  19. Re: Return Number based on Text (Excel 2003)

    The first array in LOOKUP has to be sorted ascending. Try

    =LOOKUP(A1,{"Anneal","Cool","E_cool","Heat","Melt","None"},{3,1,0,4,5,6})
  20. Replies
    3
    Views
    274

    Re: find method (2002 xp)

    The unqualified Cells in the line
    Set oscell = Cells.Find(k, , , , , xlNextTrue)
    references the Active Sheet. Adding a dot
    Set oscell = <font color=red> <big>.</big> </font color=red>...
  21. Replies
    4
    Views
    1,567

    Re: Dynamic list with no spaces (Excel 2003)

    If you have ModelA etc in column A and 2;0;1 in column B,
    Selecting three cells in a column and entering the array formula

    =INDEX(A:A,SMALL(IF(B1:B3<>0,ROW(B1:B3),999),ROW(Z1:Z3)),1)&""
    ...
  22. Re: Extract specific name from list (2002/SP3)

    VBA is not nessesary
    =SUBSTITUTE(MID(A6,FIND(CHAR(5),SUBSTITUTE(A6&"","",CHAR(5),MAX(1,LEN(A6)-LEN(SUBSTITUTE(A6,"",""))-1))),255),"","")
  23. Replies
    8
    Views
    430

    Re: Rearrange colums (2002/SP3)

    You might make an Excel>Options>Custom List of the headers in the order that you want.
    Then sort (left to right) on that custom list.
  24. Replies
    3
    Views
    278

    Re: Data sort (2002)

    <pre>Sub test()

    With ThisWorkbook.Sheets("Sheet1"): Rem adjust

    With Range(.Cells(2, 1), .Cells(.Rows.Count, 12).End(xlUp))

    Rem sort by column L
    .Sort...
  25. Re: General use of Excel Macros (2002/SP3)

    I keep my generally useful macros in my Personal Macro Workbook.
    To distribute them, I'd send a workbook with them in it to my co-workers and let them choose the macros that they find useful.
    An...
Results 1 to 25 of 49
Page 1 of 2 1 2