2
votes
7answers
116 views
Adding up all the positive numbers in Excel
Is there a way to add up all of the positive numbers in a row/column but ignoring all of the negative numbers? Like SUM(), except that it ignores negative numbers. Would I have t …
0
votes
0answers
87 views
Excel string extract [closed]
I have a string in a cell:
ABCDxxxxxEFGH
ABCD and EFGH are constant, xxxxx is of variable length.
I want to write an excel formula to extract xxxxx.
1
vote
2answers
132 views
Pretty Print Excel Formulas?
Does anyone know of a (free) tool to pretty print Excel formulas? A Google search didn't turn anything up.
I've got a few worksheets of semi-complex formulas to slog through, so …
0
votes
2answers
18 views
match and copy
Hi I am having some difficulty creating a macro - i need a macro whereby when the user input a dept code, the macro will take the number, go to first worksheet, read column B until …
0
votes
1answer
617 views
How to match a string wildcard pattern in an excel macro
I have a test like
LEFT('F13',2)='F1'
I want to change it from a left-side match to a test that supports wildcards
'F13'='F?3'
Excel doesn't support regex except in VBA code …
0
votes
3answers
170 views
Excel select column
In excel, if I want to perform a function with the column to the left, how do I go about this?
1
vote
1answer
280 views
How do I count wildcard characters using Excel COUNTIF?
How do I count the number of cells that contain the string "A*" - without treating the star as a wildcard character?
0
votes
2answers
51 views
Excel Functions
I use this formula to track a recall list; It will tell me if a tool is due,(within a number of days),overdue,or OK. Works fine but I would like to add a "Not Required" if the due …
3
votes
6answers
3k views
Excel charts - setting series end dynamically
Hi,
I've got a spreadsheet with plenty of graphs in it and one sheet with loads of data feeding those graphs.
I've plotted the data on each graph using
=Sheet1!$C5:$C$3000
Th …
0
votes
4answers
143 views
Selecting the max with a condition in excel
I have a range in excel with dates and values
EDIT:image added
I want to select the MAX value from the HIGH column for each YEAR (2009 would return 404, 2008 would return 390)
…
2
votes
3answers
201 views
Array Constants in Excel
I have an array constant defined in cell A1 as {1,2,3}. This displays as "1" (the first value in the array).
I would like to have the formula SUM(A1) return 6. However, SUM is …
0
votes
2answers
219 views
MS Excel wildcard lookup
I have a lookup table in Excel with ColA and ColB :
ColA ColB ColC
va 1 value1
ColC is the actual value table
I need to do a wildcard lookup with lookup_value = …
2
votes
3answers
792 views
Find first non-empty cell in a spreadsheet row
I've got a fairly simple Excel spreadsheet with many rows of data. Each row contains empty and non-empty cells. Is there a simple way to determine the column letter/number of the c …
0
votes
2answers
82 views
is there other way of writing range…
hi for example i have to write this in my formula
Sheet1!A1:HM232
is there any other way of writing this (for example using only numbers, without any letters)
Sheet1!Cells[ …
1
vote
4answers
2k views
How do I slice an array in Excel VBA?
What function can I use in Excel VBA to slice an array?
