Tagged Questions
This tag is for Excel questions where the question or answers involve Excel formula, as opposed to VBA or other code mechanism.
7
votes
6answers
139 views
In C++, are pointers like cell references in an Excel Worksheet?
I'm an average programmer in C++, and usually avoid pointers at all costs. But I have recently started using some APIs, that are just full of them. And honesty, they seem to work a lot better, if I ...
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 ...
4
votes
3answers
292 views
How do I remove the characters in VBA?
How do I remove special chracters and alphabets in a string ?
qwert1234*90)! ' this might be my cell value
I have to convert it to
123490 ' I mean I have to remove everything but keep only ...
4
votes
7answers
289 views
Need a better optimized code?
Need a much Optimized code.Well I Got a Project and I have Succefully made it work with the vba (Mostly helped by the stackoverflow programmers Thanks for that)
But Today I got a Feedback. Its ...
3
votes
2answers
64 views
calculating values in excel using sumproduct
I've tried sumproduct and i've tried sumif but I think what I need is a combination (or a better understanding of sumproduct)
Here is my data
state | percent
NSW | 0
NSW | 20
VIC | ...
3
votes
2answers
59 views
How to add random number in each cell of a column?
I am sure this is a pretty naive question, but I have never done this before, so please bear with me. I have an Excel sheet with multiple columns. For one of the column, I have to add a random number ...
3
votes
2answers
96 views
Excel TextToColumns method in VBA to ignore formulas
First, let me say that I hope that it is proper SO etiquette to be asking this in the same post as my original. It's all in the same vein, but I'm not sure this is proper. So, please, if I'm not ...
3
votes
3answers
95 views
Compute a static random number (compute it once) in Excel
I'm looking for a way to compute a random number once in Excel. So its computed the first time its called, but then it doesn't change afterwards.
So for example, if I had something like this in B1 ...
3
votes
2answers
117 views
Converting some Excel formula to C#
I'm trying to convert some Excel formulas into C# code, and I'm kind of lost...
I have the following:
SUMPRODUCT(1*(RIGHT(A1)={"a","e","i","n","y"}))
What exactly does that mean?
Here is what I ...
3
votes
2answers
114 views
How do I insert the formula into the cell when the formula keeps changing with an increase in row?
I have entered these formula in the second row of the Pth column:
=(COUNTIF(A$1:A1,A2)=0)+(COUNTIF(B$1:B1,B2)=0)+(COUNTIF(F$1:F1,F2)=0)
When I drag it to the third row of the Pth column, it gets ...
3
votes
3answers
51 views
Excel Time Forumula
I'm trying to find the difference between in/out times on a timesheet to calculate hours worked.
I have the following data:
----A----------B-----------C----------D-------
----Time In----Time ...
3
votes
1answer
57 views
Help in Ms-Excel 2010
Need your help on the below. I have a table where I have functions and the individual function targets in min. & max.
Table # 1:
Function......Level1......Level2
A..............28..........29
...
3
votes
1answer
64 views
Excel multi-column averages
I need to take the value in two data columns A and C, get a percentage by dividing the current value of columns A and C by the top value (which is a total), and then average the two percentages and ...
3
votes
4answers
17k views
Simulate string split function in Excel formula
I am trying to split a string in an excel formula, something like I can do in many programming languages, e.g.
string words = "some text".split(' ');
The problem is that I can't be sure that there ...
3
votes
4answers
4k views
Excel — COUNTIF based on multiple cells
I have two columns in Excel, like this:
A B
0.5 0.4
0.6 0.59
0.1 0.2
0.3 0.29
I want to count how many of the values in B are less than their corresponding values in A. In this case, the ...
2
votes
2answers
45 views
formula for finding the first non-empty cell
I have a spreadsheet with 2 columns of data, column A and B, and column C where I'm looking for the formula.
row A B C
1 50
2
3
4
5 56 6
6
7
8 ...
2
votes
4answers
82 views
Adding formula to Excel with C# - making the formula shown
I wanted to add formulas to an Excel workSheet.
I managed to do so with the Formula property.
The problem is that when I open the worksheet in Excel, I can see that the formula works - but I can only ...
2
votes
3answers
105 views
Using value from an existing cell inside a formula
I am using the "Camera" feature in excel 2010.
My goal is to have a cell which would have a date that I can manually enter and just below it the formula would get the updated value which represents ...
2
votes
2answers
71 views
Dynamically sum numbers in seperate sheet by unique ID
I'm putting together an excel workbook for a friend to track his expenses and profit from selling cars. The workbook has 2 sheets (Cars, Expenses).
The cars sheet looks like this:
A B ...
2
votes
1answer
133 views
Excel: Search for a list of strings within a particular string using array formulas?
I want to search a cell for a list of words.
I thought this would work as an array formula:
{=FIND(<list of words I want to search for>,<cell I want to search>)}
But it only finds a ...
2
votes
1answer
62 views
MS Excel: Fraction of date span within another date span
In Microsoft Excel 2007, given a date span, I want to find our what fraction of that date span lies within each season, which is obviously another date span.
For example:
Given a span of 26 ...
2
votes
3answers
166 views
Excel formula to calculate diff b/w 1st value and last value in a column (Excel)?
I have the following columns : (Using Excel Formula)
A B
------------------------
1 | Date | Value |
------------------------
2 | 8/20/2011 | 92.8 |
3 | 8/21/2011 | ...
2
votes
3answers
76 views
Reference Excel worksheets dynamically
I have a problem that should be so simple, but I'm not getting my head around it. I do printed pricelists for a store and this year they've split up the part numbers into 5 worksheets instead of one.
...
2
votes
3answers
59 views
return unique values in a table with 2 columns using excel formulas
I was searching the net and the stackoverflow but couldnt figure it out. =(
My sheet looks like:
R1 U1
R1 U1
R1 U2
R1 U3
R2 U2
R2 U2
R2 U3
Is it possible to use a excel formula to return
...
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
94 views
Drag formulas in excel from C#
I have a feeling that this question is very simple, but I just can't find the answer.
I want to apply a column of formulas in column "C" based on information in col "A" and "B". I want the formula to ...
2
votes
2answers
138 views
Randomly choose a value in one column subset by another column
What is the simplest formula I can use to randomly choose a value in column A that is associated with a given B value. So in the table below, I'm looking to randomly choose an A where B = 3. So I'm ...
2
votes
2answers
859 views
Excel VBA - Loop through range and set formula in each cell
I've got a workbook where I have one worksheet which contains a lot of data.
My goal is to create a macro that inserts a formula in a separate sheet to copy the data from the first sheet. Lets call ...
2
votes
0answers
364 views
Convert (heavily formula-loaded) Excel spreadsheet to user-friendly web calculator
I need to create a webtool that takes several input values and generates a number of outputs based on complex sequences of arithmetic calculations in an Excel workbook. I am thinking of hard-coding ...
2
votes
1answer
86 views
Tricky Excel Lookup
I have a table in Excel that looks like this:
Column A Column B
Header
Desc 1 Value1
Desc 2 Value2
Total TotalValue
I only know the Header name to search for but I want ...
2
votes
1answer
899 views
How to convert date to week number
How can I convert 20110114 (YYYYMMDD) to week, eg WK02-11, in excel ?
Thanks.
2
votes
3answers
1k views
How to loop in excel without VBA or macros?
Is it possible to iterate (loop) a group of rows in Excel without VBA or macros installed? Google didn't yield anything helpful.
=IF('testsheet'!$C$1 <= 99,'testsheet'!$A$1,"") &
...
2
votes
3answers
213 views
What is the purpose for the + prefix in excel, in-cell formulas?
I have inherited a spreadsheet project that is full of cell references with a preceding "+". What does this mean?
Example:
"=+Sheet2!A3"
Also, when I click inside the formula bar the name area on ...
2
votes
3answers
827 views
Excel formula to find the rightmost column containing a value in a table
I have some data structured like this in an Excel spreadsheet:
A B C D E F
1 1 1 2 x 2 3
2 1 1 1 2 2 3
3 3 3 3 3 4 4
I am trying to formulate an Excel formula which will give me the ...
2
votes
1answer
214 views
How do transform a “matrix”-table to one line for each entry in excel
I have something like
1 2 3
a x o x
b x x o
c o o o
and want to transform it into lines like
1 a x
1 b x
1 c x
2 a o
2 b x
2 c o
3 a x
3 b o
3 c o
by using a formula in the excel ...
2
votes
2answers
426 views
Excel row comparison to columns functions/vba
Problem: I have data that looks like this and I want to compare the rows to the column values.
so is(Table1.t1 = Table2.t1)? kind of thing.
Table 1
A B
x t1
x t2
x t3
x t4
Table 2
A B C D E
x ...
2
votes
3answers
364 views
Copying Excel formulas with Delphi 7
My team leader wants me to check if this is possible.
Our app has a grid (we use TAdvStringGrid from tmssoftware) that displays some values. Our users then copy and paste to Excel. (2010) Now they ...
2
votes
1answer
630 views
Excel MAXIF function or emulation?
I have a moderately sized dataset in Excel from which I wish to extract the maximum value of the values in Column B, but those that correspond only to cells in Column A that satisfy certain criteria. ...
2
votes
2answers
70 views
How to easily compute time in Excel
I want to do quick calculations in Excel. I have a cell (A1) with 50:00:00. I do =A1+1 and get 74:00:00. So, I guess 1=24 hours=1 day. However, I try =A1+1:23:45 and get an error. Is there an ...
2
votes
3answers
190 views
How to get the hour and minutes difference between 2 datetimestamp in Excel?
Suppose I have 2 timestamp dates:
2/24/2010 1:05:15 AM
2/25/2010 4:05:17 AM
Can anyone please advise what function should I use in Excel to get the difference in hours and minutes?
Thanks.
2
votes
5answers
2k views
Count unique values in Excel
I need to count unique values in range (C2:C2080) in excel. Googled formula:
=SUM(IF(FREQUENCY(MATCH(C2:C2080;C2:C2080;0);MATCH(C2:C280;C2:C2080;0))>0;1))
return incorrect value.
UPD: Lame ...
2
votes
3answers
617 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 using A1 as a ...
2
votes
4answers
1k views
Excel xth letter of the alphabet
is there a short formula to get the xth letter of the alphabet?
So if I give parameter '5' to the function, I would get the letter 'e'.
thanks!
2
votes
3answers
139 views
What is this Excel formula suppose to do?
I have a spreadsheet in which I'm suppose to fix up broken formulas. Does anyone know what this is 'meant' to do?
=#REF!A33
2
votes
5answers
7k views
Excel formula to refrence 'CELL TO THE LEFT'
I'm trying to do conditional formatting so that the cell color will change if the value is different from the value in the cell left of it (each column is a month, in each row are the expenses on ...
2
votes
3answers
3k views
Retrieving Values From Excel Merged Columns
I'm doing a hlookup against a value that spans multiple columns. My data is similar to this:
A B C D
---------------------------
1| Col1 Col2
2| x y ...
2
votes
5answers
3k views
Can I make a structured reference absolute in excel 07?
I have a table "A" with 2 columns "Foo" and "Bar". I have a formula with the structured reference A[Foo]. When I fill this formula horizontally I want the reference to stay A[Foo] but now, in the ...
1
vote
0answers
30 views
Format cell to have a bulleted list of items, Format? Formula?
I'm using PHPExcel and generating the excel just fine but I have some data in CSV format and wanted to know if I could display it as a Bullet List.
Example of what I have:
some, data, in, cvs, ...
1
vote
1answer
30 views
Number of working days remaining this month
I am using this formula to show the number of days remaining this month. Is it possible to do this for number of working days?
=EOMONTH(TODAY(),0)-TODAY()
1
vote
3answers
52 views
How can I convert a DateTime to a Date in Excel?
I have a DateTime value in a cell:
21/10/2011 13:38:36
which I want to convert to just:
21/10/2011
Is there a simple way of doing this? I need to be able to use the date in a pivot table.