Tagged Questions

This tag is for Excel or other spreadsheet questions where the question or answers involve an in-the-cell worksheet function, as opposed to VBA or other code mechanism.

learn more… | top users | synonyms

14
votes
14answers
48k views

Return empty cell from formula in Excel

I need to return an empty cell from an Excel formula, but it appears that Excel treats an empty string or a reference to an empty cell differently than a true empty cell. So essentially I need ...
7
votes
1answer
387 views

JXL solve #VALUE problem

I want to use AVERAGE function, but when I have a reference cell which happens to be a label I get #VALUE as the output. I have attached the sample piece of code for what I am trying to do: String ...
7
votes
4answers
2k views

Nested IF statements in Excel [Over the 7 allowed limit]

I am trying to create a spreadsheet which automagically gives a grade to a student based on their marks they got. I've apparently hit Excel's nested IF statement limit which is 7. Here's my if ...
7
votes
5answers
4k views

Modify an Excel sheet from Matlab

Is it possible to open a worksheet in excel from matlab and edit the formulas? The idea is to automate an uncertainty analysis by creating a second sheet with the uncertainty in each cell for the ...
6
votes
2answers
9k views

Conditional median in MS Excel

I'm trying to calculate the conditional median of a chart that looks like this: A | B ------- x | 1 x | 1 x | 3 x | y | 4 z | 5 I'm using MS Excel 2007. I am aware of the ...
6
votes
9answers
12k views

How to Round in MS Access, VBA

Whats the best way to round in VBA Access? My current method utilizes the Excel method Excel.WorksheetFunction.Round(... But I am looking for a means that does not rely on Excel.
5
votes
4answers
185 views

How to extract text within a string of text

I have a simple problem that I'm hoping to resolve without using VBA but if that's the only way it can be solved, so be it. I have a file with multiple rows (all one column). Each row has data that ...
5
votes
4answers
304 views

Have formula treat value as text, not numeric

I have an Excel formula reading data from a column. The data in that column is sometimes a date-like format, such as "10-11". Despite the fact that I've ensured that column is text formatted -- and ...
5
votes
2answers
1k views

XIRR Calculation

How do I calculate Excel's XIRR function using C#?
5
votes
7answers
23k views

String manipulation with Excel - how to remove part of a string if another part is there?

I've done some Googling, and can't find anything, though maybe I'm just looking in the wrong places. I'm also not very adept at VBA, but I'm sure I can figure it out with the right pointers :) I have ...
4
votes
1answer
167 views

Change Excel formula to total only visible cells

I'm using the following formula to create a total of unique values =SUM(IF(FREQUENCY(MATCH(C4:C9,C4:C9,0),MATCH(C4:C9,C4:C9,0))>0,1)) However, I'm now using an autofilter, so I now need it to ...
4
votes
2answers
173 views

How to show current user name in a cell?

In most of the online resource I can find usually show me how to retrieve this information in VBA. Is there any direct way to get this information in a cell? For example as simple as =ENVIRON('User') ...
4
votes
1answer
2k views

Run-time error '9': Subscript out of range - only when Excel VBE is closed

All, I am facing an error with a some VBA code in an Excel macro. Here’s the workflow I am attempting: I have a module that runs code to create a new worksheet, format it and add in a bunch of ...
4
votes
4answers
294 views

How to extract the last substring from a Excel column?

I have names in a column. I need to split just the last names from that column into another column. The last name is delimited by a space from the right side. The contents in cell A2 = Alistair ...
4
votes
1answer
327 views

VLookup if Lookup Value Located in Column to the Right of Table Array

I have a spreadsheet set up, and it already contains a lot of data. The A column holds date objects and column B holds numerical values. I want to use Vlookup to find the numerical value and to return ...
4
votes
2answers
6k views

Getting Values from other sheet in Excel using VBA

Hello im new to excel and i have some problems to get values from other sheets. I have some values in excel(sheet2) for example: A B C D - - - - 1 | 2 5 9 12 2 | 5 8 4 5 3 | 3 ...
4
votes
2answers
147 views

generating Excel spreadsheets in perl that reference 3rd party add-in functions

I am trying to generate an xls file with Spreadsheet::SimpleExcel that calls a function that is defined in a third party add in (Bloomberg, if it matters). The underlying WriteExcel package does not ...
4
votes
4answers
676 views

Extract words from delimited string in Excel?

I need to extract specific words between semicolon with a condition that these words contains "@" which mean e-mails. Here is an example: A1 >> james john;Paris street;p.o. ...
4
votes
3answers
332 views

Need help creating an IF statement with 3 possible answers, each based on a different range of data

I have 3 ranges of numbers and the answer depends on the range. 75-79=0.255 80-84=0.327 85+ =0.559 I tried to create an equation that accounts for the ranges, however excel states that I have ...
4
votes
4answers
2k views

Excel Help: Sum or Count until?

Ok, so here's my problem... and I'll preface this by saying that I'm pretty well-versed in Excel; however, I've very little knowledge about the INDIRECT function (so if it's something obvious with the ...
4
votes
5answers
780 views

Trying to improve efficiency of array formula

I have a SUM array formula that has multiple nested IF statements, making it very inefficient. My formula spans over 500 rows, but here is a simple version of it: ...
4
votes
5answers
14k views

How do I slice an array in Excel VBA?

What function can I use in Excel VBA to slice an array?
3
votes
2answers
53 views

Expanding a table of frequencies in Excel into a single column

I've read elsewhere on Stack Overflow that Excel questions are acceptable here, so please don't get annoyed :) If they should be elsewhere, just let me know... I'm frustrated, because I'm pretty sure ...
3
votes
1answer
135 views

How do you extract a subarray from an array in a worksheet function?

Is there some way of getting an array in Excel of a smaller size than a starting array in a cell worksheet function? So if I had: {23, "", 34, 46, "", "16"} I'd end up with: {23, 34, 46, 16} ...
3
votes
1answer
414 views

Excel - Create chart from range of cells while excluding null values?

I've got this Excel sheet which basically contains a lot of data. Now, this Excel sheet is updated dynamically via a macro that imports the data. So the data might change, meaning, some cells might be ...
3
votes
1answer
957 views

Parsing a string as an array in Excel 2010 (without VBscript)

I've got a whole bunch of cells containing arbitrary length arrays stored as semicolon-delimited strings, ranging in length from 1 to 65 entries, like: pcmsh15(232);pcmsh16(232);pcmsh17(136); ...
3
votes
2answers
134 views

In Excel, how to round to nearest fibonacci number

In Excel, I would like to round to the nearest fibonacci number. I tried something like (sorry with a french Excel): RECHERCHEH(C7;FIBO;1;VRAI) -- HLOOKUP(C7, FIBO, 1, TRUE) where FIBO is a named ...
3
votes
4answers
542 views

excel - rounding time to the nearest 15 minutes

I have a formula that computes the difference of several TIMES and multiplies it by 24 to get a decimal value for the total: D10=(C9-D9)*24 I would like to do special rounding like this: if D9 is ...
3
votes
2answers
362 views

Excel VBA If WorkSheet(“wsName”) Exists

Just wondering if there is clean cut functionality that returns True or False if a worksheet inside a workbook exists? Would be good, but not essential, if it's possible to do without skipping error ...
3
votes
1answer
268 views

How to evaluate a excel formula through XSSF event API

I am reading XLSX files using event API of POI, i.e I read the contents of the XLSX sheet through a SAX Parser. I want to know how can we get the computed value of a formula by using XSSF event API. ...
3
votes
4answers
345 views

How to create a spreadsheet with formulas using Rails?

I need some gem/plugin to create an Excel spreadsheet with formulas to use in my Rails application. Any suggestions?
3
votes
2answers
280 views

Comparing two columns in Excel with exclusion

I want to compare values in two columns in Excel as depicted in the image below :- Using the formula, I want to put the values in the "Values of A which don't exist in B" and "Values of B which ...
3
votes
1answer
39 views

Counting per blocks of columns with a certain condition

I have 2 main columns Employee Number and Sales agent number. Each Employee can have 1 or more sales agents associated with them, and each of these sales agents under a particular employee have a ...
3
votes
1answer
428 views

excel function to get value of another cell

I hope the image above can explain what I need. :) Problem 1: Get the date where it is the first value in the row Problem 2: Get the date where the value is 100 I would also attach the actual ...
3
votes
3answers
15k 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 cell in each row that ...
3
votes
3answers
3k views

Round function in Excel, worksheet function vs VBA

I had an application for returning closest matches to certain values in a large cluster of values( as in my earlier question) and I chose a VBA solution. While in the course of using the said ...
3
votes
6answers
7k views

Excel charts - setting series end dynamically

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 This basically just plots ...
2
votes
2answers
57 views

Cell Look Up In Excel

I am working IN excel and am looking for an equation/formula to put inside one of the cells. I have a column and there are 10 rows in that column. Periodically it will be updated and a user may add ...
2
votes
3answers
70 views

How to get the newest value from a column with conditions

I have a table in Excel which has the columns: Date Person Name Amount (£) The table is used to record when people pay me money. Typically, I can get more than one person paying me on the same ...
2
votes
2answers
49 views

Dynamic cell access

My question may seem quite simple but I haven't found the answer yet. In excel, I would like to access a cell with a dynamic row number. Example 1 : cell A(1+2) Example 2 : cell B(ROW(A1)*10) What ...
2
votes
2answers
49 views

Excel search for cell references in formulas

I inherited a big model and have been trying to reverse engineer some of the formulas. There are a lot of fields. I am not sure if everyone of them is necessary. Is it possible to search an Excel ...
2
votes
1answer
80 views

Formula to count the number of holidays between 2 dates in excel

Lets say I have a named range of dates that are holidays. This range is called 'holidays'. Is there a formula in Excel I could use to count the number of holidays that fall between 2 dates? e.g. ...
2
votes
1answer
50 views

Can you tell Excel not to recalculate a cell whose contents are based on a COM component?

I've got an Excel spreadsheet that uses a C# Component. The component is an Excel Add-in and it's called via a cell's formula function. ie =MyCalculation(C24) The cell C24 has a hard coded value ...
2
votes
1answer
90 views

Excel 2003 DSUM not working

A client of mine has a major application written and running in excel 2003 ( I know, and they know, that it is a mistake, and they are waiting for it to be properly incorporated into their SAP ...
2
votes
2answers
61 views

Alternatives to creating a megaformula

Is there a way to evaluate a series of formulas for a table of values without combining them into a single megaformula? It's easier to illustrate with an example. Say Table1 looks like this: ...
2
votes
1answer
157 views

Sumifs with Array conditional

I'm surprised I can't find this anywhere which makes me think I must be going about this incorrectly. I want to be able to include a series of values within sumifs so it performs like a loop for each ...
2
votes
1answer
95 views

Simple Script in VBA to get values from flagged cells, add them and display the total

I need to write a script in VBA so that if column B has a x (or just is filled) then goto the cell to the left of it and get the value, I want to do this on a worksheet and I want to be able to ...
2
votes
2answers
73 views

Concatenating date with a string in Excel

I have two cells in Excel. one has a string and the other one has a date. in the third cell I want to put the date and the string together. For example: A1 = "This " A2 = "03/03/1982" I want A3 to ...
2
votes
1answer
434 views

Nesting IF statements in Excel 2010

How do I nest IF statements in Excel 2010? I found my inspiration trying to organize data from Evolus Pencil Support Tickets. Here is my desired result: I want to nest IF statments to choose between ...
2
votes
1answer
96 views

How do I get to display the last date that has a corresponding value in another column in excel? [closed]

I have a excel spreadsheet with dates in one column, and results/values in another column (not next to each other, but on the same sheet). I want to set up a little summary table that will display the ...

1 2 3 4 5