A formula is a mathematical equation or expression that performs various operations on variables to produce an outcome.
-1
votes
2answers
27 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
23 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
0answers
16 views
Crystal Report 2011: Formula fields bug
Sorry might be a long post to explain this wierd bug. I am fairly certain its more of a bug or a setting i have missed than an issue with my formula code. I have formula called {@Calc_all} and ...
0
votes
2answers
25 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
15 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 ...
1
vote
1answer
46 views
Recursively editing a list in R
In my program, I am recursively going over a nested list and adding elements to an overall list that I will return. There are a few details to be taken care of, so I can't just use unlist.
...
1
vote
1answer
40 views
as.formula in R doesn't seem to accept a name that starts with a number followed by _
How can I avoid getting the following error. The as.formula() does not seem to take a variable starting with a number and followed by _ (underscore). I am generating these variables dynamically and I ...
0
votes
0answers
24 views
Converting from a Formula object to a list
In R, I would like to iterate over a formula object. R automatically converts a formula to a parse tree, so I see no reason why I shouldn't be able to iterate.
For example, f <- ~x + y has ...
0
votes
4answers
67 views
Use variables from formula in R function
I'd like to write a function of the type myfunction(y,data), y being a column name of data. Do you have any idea on how to code it in order to be able to use the formula myfunction(y~,data=mydata) ...
0
votes
0answers
25 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 ...
3
votes
1answer
44 views
Using R to interpret a symbolic formula for outside use
In R, the formula object is symbolic and it seems rather hard to parse. However, I need to parse such a formula into an explicit set of labels for use outside of R.
(1)
Letting f represent the ...
0
votes
1answer
26 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 ...
1
vote
2answers
29 views
How to know the points in a line given the starting and end points to traverse the line: any formula?
I'm using AS3. But it doesn't matter of what language am I using. I'm just finding logic on how to solve this problem.
I've done creating a line, drawing with graphics class given the start and end ...
0
votes
2answers
25 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
20 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
37 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 ...
1
vote
2answers
38 views
Calculating a value range in percent
The following function takes a DPI value and returns a percentage:
100% if the value is bigger than 200
50% to 100% if the value is between 100 and 200
25% to 50% if the value is ...
0
votes
0answers
17 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 ...
-1
votes
1answer
71 views
How to parse mathematical expressions
I'd like to understand how a Java program like GeoGebra can read a mathematical expression like exp(z^2) from a textbox and then evaluate it. For those familiar with MatLab: How do you implement ...
0
votes
0answers
133 views
Leibniz determinant formula complexity
I wrote some code that calculates the determinant of a given nxn matrix using Leibniz formula for determinants.
(http://en.wikipedia.org/wiki/Leibniz_formula_for_determinants)
I am trying to figure ...
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;
-2
votes
2answers
40 views
Mathematical formula for inverse distance in a range [closed]
I often run into this problem but I'm not sure I've nailed down the best way to formulate it. I assume it requires a reciprocal...
Basically, if x is 0, y should be maxY, and if x is 200 (or some ...
0
votes
2answers
42 views
What does a formula with no left argument mean in R, e.g. ~x?
I understand that in a formula like y ~ x I am looking at "y" as a function of "x". In maths this would be something like f(x) = x.
In R, functions like xtabs can take formula objects without a left ...
0
votes
1answer
10 views
How can I quickly remove unused formulae from the bottom of the spreadsheet?
The person who built the spreadsheets used a shortcut to copy the formulae down the entire column, although most of them only have a few hundred active rows. This is making the file size huge and ...
0
votes
2answers
29 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", ...
1
vote
1answer
43 views
Android - Display formulas in multple choice questions
I'm working on creating a small android app to display multiple choice questions. Few of the question/answer choices has complex mathematical formulas. I'm able to display formulas using WebView + ...
0
votes
3answers
46 views
Easy C++ bloodshed dev c++
Why is this printing 1??? Its driving me INSANE. Should be printing 1.01005016708
I am using bloodshed dev c++ to compile
#include <iostream>
#include <cmath>
#include <algorithm>
...
0
votes
1answer
46 views
Calculate Distance Forumla while using a Scale
I am trying to calculate a distance based upon the scale my users draws in.
My user can snap to other points in the game by drawing a line on a grid.
The grid is a numerical value that they can ...
0
votes
2answers
48 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
0answers
28 views
Supression formula for a nuber of records with condition?
I created a sort of calendar for a report and I have data on a table that is in the format classid, date of class and other info (Attendance). I also have another table that has dates and days tied ...
0
votes
1answer
47 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
0
votes
1answer
33 views
Developing Formula/Pattern To Determine Position
I'll try to ask as clearly as possible, but please comment if some part is not clear to you.
I'm trying to develop a formula to determine the position of an element based on that element's value in a ...
1
vote
1answer
51 views
Is my R formula equivalent to the statistical model I have in mind?
Problem:
Building statistical models using formula is a powerful and elegant feature of the R language.
One of the reasons I haven't used formula as much as I should is that the syntax is a bit ...
0
votes
1answer
45 views
Crystal Crosstab Embedded Summaries in V11?
I can't believe I am having such difficulty finding the answer to what I believe is a simple question.
I have a crosstab report which has
Pivot ColA ColB
PivotC1 <cellA1> ...
1
vote
2answers
76 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. ...
0
votes
1answer
60 views
Estimating many interaction terms in glmnet
It is my understanding that glmnet takes matrices where each column is an explanatory variable.
I have a dataframe with ~10 explanatory variables (some of which are factors)
How could I take a ...
0
votes
0answers
22 views
How to get top 2 variance
Hello new to Crystal Reports.
I have a report based on a survey
I have tbl.Theme where there are 14 Themes under each theme there are questions.
I have the variance calculated for each theme, how ...
-1
votes
1answer
35 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
28 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
29 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
1answer
89 views
If cell contains value n, how can I create a column of n cells, each containing value n (and then repeat with another cell)?
For the sake of simplicity, let's say I have a column of 5 numbers as follows:-
8
15
8
3
26
What I want to do is create a column composed firstly of 8 cells containing the value '8', then 15 cells ...
0
votes
1answer
43 views
What is the syntax of the formula argument in R? [duplicate]
In the package nnet, the following example is given:
# or
ird <- data.frame(rbind(iris3[,,1], iris3[,,2], iris3[,,3]),
species = factor(c(rep("s",50), rep("c", 50), rep("v", 50))))
ir.nn2 ...
0
votes
2answers
35 views
Working out the distance between 2 points in one plane only
How can I find the distance between the two points as shown in the above picture.
I know I can use Pythagoras to find the 'actual' distance between the two points, but I want to find the X distance ...
0
votes
2answers
18 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
0answers
47 views
Round Robin Equal Distribution
thanks in anticipation of any help you may offer!!!
I am using the following function, to generate a round robin tournament:
function round_robin($teams){
if (count($teams)%2 != 0){
...
0
votes
1answer
40 views
How do I make a sharepoint formula that calculates date different based on when a value was last entered
Here's the problem I'm trying to solve. I have an infopath form that users fill out and submit to a sharepoint library, and every field on the form is mapped to a sharepoint column.
Column A will ...
-1
votes
1answer
78 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
0answers
25 views
Auto fill on a filtered list?
I'm having trouble with this. I want to autofill the filtered cells, but to no avail. If anyone can suggest anything it would be a great help.
Range("A1:I1").Select
...
0
votes
2answers
73 views
Pythagorean Triples Formula in Javascript - Project Euler Prob 9
I'm trying to solve the Project Euler Problem 9 :
A Pythagorean triplet is a set of three natural numbers, a < b < c,
for which, a2 + b2 = c2
For example, 32 + 42 = 9 + 16 = 25 = 52.
...
0
votes
1answer
36 views
Formula to assign “Score” of one item to a different item in Crystal Reports
I have three fields called "UniqueID" "Relationship" and "Score".
Relationship:
Self
Boss
Peer
Direct Report
Other
I need to merge the Scores from "Others" and "Peer" into one group labeled ...

