0
votes
2answers
29 views

EXCEL How do I allow only part of a formula to be changed in a block?

If I have this formula in block A2: =A1*4+3 How do I lock "=A1*" and also lock "+3" so that when I type in block A2 it only changes the "4"? For example, If I were to type "5" in block A2; the ...
0
votes
1answer
40 views

Excel: Plot only values that satisfy a certain condition

I'm trying to efficiently plot tens of thousands of data-points. For simplicity's sake lets say each data-point contains 2 values. The first value is a decimal number. The second value is a whole ...
2
votes
1answer
51 views

Specifying a variable length formula in countifs

How to give a variable length formula as input for countifs. Is there any possible way to do that? Application.WorksheetFunction.CountIfs(formula1,formula2...) whereas formula1 has a range and a ...
1
vote
3answers
60 views

Excel: Matching the closest date from range of dates

I'm trying to display the header of the column that its cell that contains a date, is the closest (out of 3 other cells with dates, B2:D2) to the a specific cell (A2) So here's my sheet: A ...
0
votes
0answers
21 views

Finding values with partial data in another worksheet - Excel

I would like to find similar data in another worksheet from partial data. I have two worksheets - 1 contains column of data (some partial serial numbers) and would like to find similar or match or ...
0
votes
3answers
42 views

How to produce average for calendar months when spreadsheet quantity spans months?

I am documenting my historic home energy consumption. I am entering in to a Google drive spreadsheet the kWh figure found in gas bills from the last few years. I have come far - ...
2
votes
1answer
28 views

Call Log breakdown per number called

So i have a call log in excel, it's set up something like this: Inbound Phone Number: Direction: 8881234567 IN 8881234567 IN 8777654321 ...
0
votes
0answers
37 views

Have excel automatically insert a formula into a cell if text is entered into another

I have spent almost 2 hours googling and reading and trying but cant see a way without VBA. My situation is easy to explain. I am building a sheet that is ever changing in length. All i want to do ...
0
votes
1answer
42 views

excel 2003 vba: write formula into cell

I tried to write a formula into a range and get the following message: Run-time error '1004': Application-defined or object-defined error. I use the following code but I don't understand why this is ...
1
vote
1answer
33 views

How to select a whole column or row in a formula in excel? [closed]

I want to select a whole column for a formula in excel. I know I can do this, for example: =AVERAGE(B4:B54) which would give me the average of the cells from B4 to B54 but I want to reference the ...
0
votes
1answer
22 views

Calculate Sum with cells that contain a string that stands for a specific value

I want to solve the following. In Cell A1 i type "S". In Cell B1 i type "U". Now I want to define a key value table somewhere on the excelsheet -> (S=8;U=3) If I create a sum function for cell A to ...
-2
votes
0answers
17 views

adding 'weight' to a value [migrated]

I work in customer service center where we monitor calls and grade them. We have an excel sheet where we score these calls, and my question is, we want to give a greater weight fro 10 points an agent ...
-5
votes
0answers
38 views

MATLAB or EXCEL: Find relation / formula in series of numbers [closed]

I need to get the relation of 2 numbers with 2 series: „Series 1“ was obtained, using a certain parameter = 0.7 And „Series 2“ was obtained, only by changing the same parameter to 0.4 I need to ...
1
vote
1answer
33 views

Excel Column Formula with Conditional Value

I have a summary table like this: Total Pay | Amount Unpaid | Total Left It is based on a table with the following format: Date | Hours | Pay | Paid ... | 5 | 100.00 | Yes ... | 4 | ...
-1
votes
2answers
55 views

Excel Formula- Divide a sum into multiple cells?

I need a formula for excel that will allow me to take a sum and divide it up into a number of cells. for example: A1= sum B1 to B4 needs to have a portion of the devided sum i.e. if sum 1000 then ...
1
vote
2answers
48 views

can any excel cell formula divide its own value by 1000?

if I programmatically or manually enter a value, let's say 10000, into an excel cell, I need it automatically divided it by 1000 for me, can this happen? No.1, I am not asking about display format, ...
0
votes
2answers
39 views

Use of Excel text parsing functions to extract from a string with complex format

I have a list of items, with a sample as such: (CompanyName){space}(PartNumber ending with -){space}(Revision Level).pdf Company 100-50006- Rev. A.pdf Company Two 6001241- Rev. CN.pdf CompanyThree ...
1
vote
1answer
89 views

MS Excel Payback Period Formula to Display Year / Compare Cumulative Totals in Separate Rows

I am working on a project that is supposed to compare the cost of automation vs non-automated call analyzing and then tell you what year the payback period will be. I am having issues trying to get ...
0
votes
0answers
26 views

Excel: Using MATCH as row argument of OFFSET [migrated]

Cell F10 is a choice-box: 'Best', 'Base', 'Worst' case. I'm trying to change Revenue growth (F11) based on that selection. How do I use match as the row argument of the OFFSET function in cell F11 to ...
0
votes
1answer
40 views

Excel formula not updating for 1 column (works in the rest)

I was not able to find the solution anywhere so maybe someone would be able to think of something. I have a spreadsheet where one of the tabs is build from the cell values from another ones. This is ...
0
votes
2answers
59 views

Excel - Inserting formula with VBA

Hello Stackoverflow friends, I am struggling for 1 hour with a formula I would like to insert via VBA: Formula = "=IFERROR(VLOOKUP(Q" & j & ";Table1[#All];2;FALSE);"""")" ...
0
votes
3answers
43 views

How to exclude 0 from MIN formula Excel

i need to know how can i exclude 0 from rows and get the MIN Value. But also i need to exlude the F1 Cell. Ex: A B C D E F 1 0 18 20 0 150 = 18 but if i do this In excel with ...
1
vote
1answer
47 views

Calculating the average of value in group of cells

I have an Excel sheet in this format. You can see that there are groups of dates, and there is a column Present with boolean values. I want to find the percentage of Yes in the Present field. If ...
0
votes
0answers
30 views

Join country calling codes to country table list

This is not exactly a programming question. But I am a little stuck here. I am creating a rails project which requires a country table. I also like to include the country calling codes into them. I ...
0
votes
3answers
21 views

How to get displayed decimal place

How to return the displayed decimal place only in excel by formula? for example, A1=9.123, it formated to display 9.12; how to get the decimal number of 2 in this case;
0
votes
2answers
109 views

Excel Formula If x in column B then y, Z, K..etc in Column A

So basically I have a spreadsheet, with a list of names in column B. For this list of names I want to assign text to add into the adjacent cell in column A. I have tried =IF((C:C="Name1", ...
0
votes
2answers
54 views

looking for excel formula combining columns and rows

Imagine a spreadsheet with 4 columns: A B C D If the B column is equal to D column, I want in column A the result of column C for example: if B2 is equal to D2, A2 value should be C2 value if not ...
0
votes
1answer
106 views

Excel, count cells that have value between two numbers

I need a formula to count the number of cells in a range that are between 10 and 10.000 what i have is =COUNTIF(B2:B292,>10 AND <10.000) But how do i put the cell in the < and the > ???? Thnx
1
vote
2answers
111 views

Excel 2003 formula not calculating after changing it in VBA

I'm using Excel 2003 version. If I change a formula with VBA such as: Range("A1").Formula = "=Sheet2!B:B" sometimes the formula calculates and shows the correct value from cell B1 of Sheet2. ...
-1
votes
1answer
44 views

How to replace different cell values in a new cell in Excel 2003 [closed]

I need to substitute/replace different cell values on a range of cells in Excel 2003 and put substitution values in different cells, how could I do this? I tried Find&Replace but it replaces in ...
0
votes
1answer
33 views

excel date time cell being covertet to numeric and cant stop it

i have two sheets the first one to call a value from the second sheet, in the first sheet i have =IFERROR(VLOOKUP(B2,'sheet'!B5:'sheet'!I2500,8,FALSE),"") this works fine for all full text fields ...
0
votes
0answers
34 views

ignore left cell content and allow sellected but same data to be added to cell on right

A B C D LQ3.1 LQ3.1 LQ3.2 LQ3.2 1 C D C D 2 2 2 2 2 My formula: ...
0
votes
2answers
21 views

excel: remove number from plot, set no number in formula

I have a log formular that prints out errors for values below 0. I could set these 0 in the formula, but actually I want to have no number, not even 0 inserted. How do I set up a cell/formula with no ...
-1
votes
1answer
137 views

How do I add values in column B if column A contains the same employee surname more than once? [closed]

State of Data: I have column A which has names of employes and column B has number of hours. How do I add the hours if column A contains same employee surname more than once? I have been using what I ...
0
votes
1answer
62 views

Isolate Rows that Contain Certain Values in One Column (Excel)

I need help with what I think is a simple Excel formula or function. I have two columns. As an easy example let's say the first column is numbers and the second column is colors: | 1 | Red | | 2 | ...
2
votes
2answers
81 views

How to count cells that only contain the VALUE 0 and not the result of a formula?

For the following sheet: A 1 0 2 0 as formula result 3 0 4 0 as formula result 5 0 as formula result 6 blank 7 0 How do I count only the cells with 0 entered as VALUES and not the ...
-1
votes
1answer
166 views

Offset/change all row numbers in formulas in selected cells using macro in excel

I have a large number of helper rows taking information from a different sheet using a simple sum function: =SUM('HIS-WOT'!J36,'HIS-WOT'!J82,'HIS-WOT'!J128) Is there a macro out there that will ...
0
votes
1answer
95 views

How to only count unique record once and based on that count Yes or No

I have 3 columns ORDER, ID and E Yes/NO In Column C order In Column D ID In Column E Yes/No For example for ID = 144. I need count to how many order it was given to 144. so looking at sample table ...
0
votes
1answer
23 views

Redundancy in formula

I'm debugging a large spreadsheet and I've come across the following formula: =IFERROR(IF($B37="CMD Account Team", VLOOKUP(CONCATENATE(B37, G37, ...
0
votes
1answer
38 views

What's wrong with my formula for finding matching parts of text?

What is wrong with this formula? I've tried the formula differently over and over and I can't figure out what I am doing wrong. ...
0
votes
2answers
390 views

Excel conditional formatting for the entire row with more than one formula

After 3 hours of searching I still didn't find an answer, here is what I am trying to do: I am trying to fill with green any row that has WBS in it and with Red any row that has ACT in it and Blue ...
-1
votes
2answers
67 views

I need a formula to calculate the difference between two cells retyrn a blank cell if one of the 2 cells is blank? [closed]

Example: A2 = 4, C2 = 2; it would calculate the difference to be 2 but i need it to show blank if C2 were empty instead
2
votes
1answer
62 views

creating a formula to turn concatenated text into a range name and dragging this formula across

I am doing some ratio analysis for my finance unit. We have to create a financial model which analyses financial statements for three companies and makes a recommendation. The statements concerned ...
2
votes
4answers
469 views

Excel - Count Unique values with a condition

In column A I have list of different names. In column B, I have values either 0 or 1. I want to get a count of all the unique names from column A which has 1 in column B. Using below array formula I ...
0
votes
1answer
39 views

Excel VLookup and List

I am trying to list all of the unique occurrences of one cell on a table and then list them. TABLE 1 PLACES WEEK | Place 1 | Week 2 | | Place 1 | Week 2 | | Place 1 | Week 2 | | Place 1 | Week ...
0
votes
0answers
29 views

Calculating NORM.DIST in JavaScript

I am trying to calculate the NORM.DIST in JavaScript. I am starting from this link: http://office.microsoft.com/en-us/excel-help/normdist-HP005209192.aspx. I already know how to calculate it when ...
1
vote
1answer
16 views

Using two variant to create a stack up value [closed]

I wanted to ask if it's possible for excel to do something like that. Let's say i have 10 cells going to be either Yes or No But i will need to calculate how many Yes by adding them up. Lets say out ...
0
votes
0answers
202 views

Excel : variable in vba formula

this seems so simple, but I don't understand why it doesn't work... I tried this first, make a formula that does a vlookup on a closed workbook. I tested with a static link, it worked : ...
0
votes
1answer
92 views

VBA, how to make formulas visible in Excel

Dim n As Double n = Sh.Range("B10").Value Dim rate As Double rate = (datefin - datedepart) / n Cells(13, n + 3) = datefin For y = n - 1 To x Step -1 Cells(13, y + 3) = datefin - rate datefin = ...
0
votes
2answers
62 views

Excel - Count Average Value per Any Arbitrary Grouping

I have a 2-column in Excel which pairs Age with a certain value:e.g., 34 107.8 22 5 22 97 45 76.5 46 16 I need to create a table/chart/pivot which shows me the AVERAGE value per any arbitrary ...

1 2 3 4 5 6