-
Hi all With the data below :- how can I sum the last 10 cells in the row from 2-11 (row 1=32) and (row 2=25) Data is added to columns 12 to ? at a later time. Derek 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 1 5 0 1 4 1 7 2 4 7 3 5 2 2 2 2 3 2 3 2 2
-
Adding to Warren's code (Hi Warren), this is a situation when the macro recorder is more than adequate as it operates generally on the selection you have made, so, this recorded this morning. Sub PlainBorder() With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .ColorIndex = 0 End With With...
-
Mike You will surely need some VBA. I would choose a Worksheet_Change() event. To place the code click on the source sheet tab and select view code. Paste the code in the new window, save and close the window. It works currently on the theory that Hot Client will be placed in cells in column D and that...
-
I have spreadsheets which have dates listed in Column A with other data in subsequent columns. There may be multiples (even hundreds) of one date listed (see example below). 5-May-08 6-May-08 7-May-08 7-May-08 7-May-08 8-May-08 There are also missing dates (e.g. 1-May-08 to 4-May-08). Ultimately, I need...
-
I have a spreadsheet of addresses that was scanned using OCR. The scanner did an acceptable job of text recognition, however due to additional Title's (i.e. MD, PhD, RN, etc) the columns in excel became wildly unmanageable. I need to extract Telephone, Fax and E-mail from a long list of contacts...
-
Last week I was on holliday and we had to divide 3 bottles of wine among ten friends. We could have written our names on little papers and draw 3 names from the lot, but why do something like that when you have a computer with excel. So I wrote a array function that returns a permutation from a set of...