A formula is a mathematical equation or expression that performs various operations on variables to produce an outcome.
0
votes
1answer
40 views
Writing spreadsheet function via code
I want to write this into the range B1..
=split(A1," ")
(the delimiter is a space)
How do I do it using code?
I tried this...
var splitCell = "=SPLIT(A1," ")";
...
0
votes
1answer
34 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.
...
1
vote
3answers
95 views
Permuation with repeated letters and consecutive letters not same
I have been trying to solve a question on permutation and haven't really been successful. I want to generate all the permutations of a specified length that start with a letter and end with the ...
0
votes
2answers
182 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 ...
0
votes
1answer
134 views
Crystal reports formatting issue with formula fields
I am writing a crytal report with the following stucture:
Group 1: School
Group 2: Student
Group 3: Category
Details
I am trying to split the details into two seperate ...
-1
votes
2answers
48 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
50 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
152 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 ...
1
vote
0answers
104 views
excel vba formula
When I run this part of my script I get a Run-time error '1004': Application-defined or object-defined error
ReDim yb_formula_str(nsetb)
yb_formula = "=0"
For i = 1 To nsetb
yb_formula_str(i) = ...
0
votes
1answer
37 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 ...
1
vote
1answer
66 views
Update a cell's value according to colored cells - Google Docs Spreadsheet
In Google Docs spreadsheet, I have some cells green and red colored. I want a cell having the count of those green/red colored cells.
Can I have a formula to do this thing or any custome code for ...
0
votes
1answer
66 views
How to set animated scrollTop and scrollLeft values using a formula?
I have the following code...
jsFiddle
CSS
#container {
position:absolute;
height:100%;
width:100%;
top:0px;
left:0px;
overflow:scroll;
}
#content {
position:absolute;
...
0
votes
0answers
20 views
How to display a sub/function (compiled on VBA) in a worksheet cell, as a formula
I am developing a tool on VBA with several functions and subroutines, to calculate certains coefficients. At the moment, I created a window on which every func/sub is linked to an icon, required data ...
0
votes
0answers
106 views
Unable to use Alias with case in Hibernate Formula
I am using Hibernate, in one of the hbm I hve defined a formula.
It works well in this form:
<property name="isUpdatable" type="java.lang.Boolean">
<formula>
...
0
votes
1answer
11 views
jQuery Navigation Centering Formula Only Runs Once
I have a formula I wrote to center the position of the navbar I made and it's onload.
Is there a function I have to rewrite it in to make it run again every time the window size is changed?
...
0
votes
1answer
65 views
InfoPath Formula in Rules
I'm new to writing formulas in infopath and can't see what I'm doing wrong with the following:
if (contains(userName(), "\"))
{
substring-after(userName(), "\")
}
else
}
userName()
}
The above is ...
1
vote
2answers
60 views
select first two characters of values in a concatenated string
I am trying to create a formula field that checks a string that is a series of concatenated values separated by a comma. I want to check the first two characters of each comma separated value in the ...
0
votes
0answers
21 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 ...
0
votes
0answers
9 views
@Name in Multi value field
I am working with a a DataView from the Extension Library. In the detail place holder I have added a panel then a table within that panel. in one of the cells of the table I have added a computed ...
0
votes
2answers
130 views
getting rotation angle from moving object's speed x,y?
What is the formula used to determining moving object's rotation angle from its velocity or vector direction of travel?
For example, if an airplane is moving toward position (x1,y1) = (200, 100) from ...
0
votes
1answer
53 views
How to calculate the original value given a percentage inclusive value?
We have a shopping cart that is used in different places, therefore the tax is stored in a config file, presently in New Zealand it is 15%, so in the config file we are storing .15 but this number can ...
0
votes
0answers
125 views
Google Spreadsheet ArrayFormula cell reference
I have the following formula in my spread sheet:
=ArrayFormula(QUERY(TRANSPOSE(SPLIT(JOIN(" ";Archive!C7:C);" ")&{"";""});"select Col1, count(Col2) where not(Col1 matches '(F2)') group by Col1 ...
1
vote
1answer
35 views
Python dictionary ManuaLoa CO2
I need some help with my python program. I have imported a .txt file and made a dictionary of it in an numpy array. The text file is a table of co2 meassures, one per month per year. I need to ...
3
votes
1answer
442 views
how to write formula in crystal report using formula editor
I am using crystal report 2008 version and i need to write formula for a date parameter.
In some case datetime will come null value from db. That time i need to show a blank space in the same ...
1
vote
2answers
154 views
Converting word frequency to a graphical histogram in python
This is what I have right now, thanks to Pavel Anossov. I am trying to convert the word frequency that has been outputed into asterisks.
import sys
import operator
from collections import Counter
...
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
118 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
71 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
47 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 ...
0
votes
1answer
77 views
Excel formula Iferror
I have a drop down list (data validation) that populates other cells using vlookup that pulls data from a separate worksheet. I'd like to include an error message if the field is blank like "No data ...
0
votes
1answer
38 views
DAX formula in Sql Server Analysis Services
I am new to DAX, How can I calculate the runs of a particular player from below table. My table name PlayersData. For example, want to the total runs of the sachin tendulkar from the table. Need Dax ...
0
votes
4answers
209 views
Excel formula to take values from cell range, sort alphabetically and write as a single string
I currently have a list of translators and the languages they can speak:
| A | B | C | D | F |
...
0
votes
2answers
113 views
Add space between time and PM/AM in spreadsheet
I have a spreadsheet with a couple hundred rows. Two of the columns contain times. There are 4 different possibilities for what the times can look like. The numbers can be anything, this is to ...
0
votes
1answer
78 views
sumifs using range cell - error 1004
i need your help.
if i'm running this code, there are no problem occur ( be attention on Sheet1.Range("F2:BL6991"))
Colnumber = Sheet2.Range("A1").End(xlToRight).Column
'MsgBox (Colnumber)
...
0
votes
3answers
49 views
Convert format 0d 22h 41min to a time in any format using a formula
I have a column of data that I want to sort based on the time from earliest to latest.
The format of the data is presented as:
0d 22h 41min,
0d 2h 3min
Etc.
What's the best way to do this? I'm ...
0
votes
1answer
72 views
HTML5 - choose formula for output element based on input
I am designing a simple calculator, which has 3 inputs and one output.
I wonder if it's possible to change the formula the output element "uses", based on which input-fields are used (*).
For ...
-3
votes
1answer
167 views
If-then formula [closed]
In Excel 2013 I want to run a formula that does the following:
If cell A1 is equal to zero then B1 is multiplied by 10% and C1 is multiplied by 20%, and D1 multiplied by (1-0.2).
0
votes
2answers
91 views
Sum / Counting items in a column that match 3 criteria
Thank you ahead of time for anyone who can help me with this, I think I am close, but it still isn't working.
I have a simple sheet activity reporting sheet that I am asking staff to complete over ...
0
votes
2answers
47 views
Ordering SQL results based on distance formula
Not sure the topic appropriately describes what I'm attempting but here is the situation. I have a database of x, y coordinates and locations associated with them. I'd like to have users submit form ...
0
votes
1answer
19 views
Excel Formula or Function to Return On-line Status
Does anyone know of a Formula or Function to query the MS Communicator on-line status of a user given their SMTP address (sign-on name)?
I have to occasionally make a number of calls and knowing the ...
0
votes
2answers
72 views
excel adding 1 on all alphanumeric string
I need to make a new product code for 6000+ records. In order to do that fast and decipher it in the future, I need to put a formula from the old code to the new code.
sample codes:
yas111
bd224
...
2
votes
1answer
66 views
Excel Conditonal Formatting - 'IF' Formula Syntax
I would like to use this formula as a conditional formatting formula:
=IF(COUNTIFS(AccountsMonthsOrdered[Account],'Account Summary 2013'!$A$1,AccountsMonthsOrdered[Month],'Account Summary ...
0
votes
2answers
83 views
How to create excel formula that will add an number to specific digits in a multi digit number
Ex: I enter the number 9876543210 in a cell.
I want to create an if then formula to add a sequential number to this but working only off of the last digit. the zero in this example.
If the last digit ...
0
votes
2answers
69 views
Set formula to a range of cells
this is simple demo of what i want to do. I want to set a formula to a range of cells(eg. C1 to C10).
Range("C1").Formula = "=A1+B1"
but how to make formula use dynamic cells like this:
...
1
vote
1answer
298 views
converting sumif forimula from excel to macro vba - Prolem 2 : converting cell range
When I'm running code below
Sub test2() Dim i,
Rownumber As Integer
Rownumber = Sheets("Sheet4").Range("A65536").End(xlUp).Row
For i = 2 To Rownumber
Sheets("Sheet4").Cells(i, ...
0
votes
0answers
16 views
evaluate range into variable - formulaarray vs formula
Hi friends of the forum ,
I am searching the way to evaluate a formula that includes a range into a variable as a "normal" formula and not as a formulaarray, does anyone know the trick for it ? here ...
0
votes
1answer
54 views
Removing hyperlinks, retaining formulas and format
I'm not very good with Excel but I'm going to try and explain my problem. Somehow an excel was created via a Timer and somehow has 100's of invisible hyperlinks spread throughout the sheet. I am ...
-1
votes
1answer
58 views
Excel - count 45 days after a date
I have a list of varying enrollment dates. I'd like excel to calculate 45 days after the enrollment date.
Anyone know the formula for that?
0
votes
0answers
98 views
Looping a macro, apply formula on different column, reference should be update also
how to apply this code below to all column (target column is C : BL), and below code for column C
For i = 2 To RowNumber2 + 1
ActiveCell.FormulaR1C1 = _
...
-1
votes
1answer
38 views
Excel column value with big spaces in between [duplicate]
In the excel, i have a content exactly looks like the one below. i need to use excel formula remove all the unnecessary info. Only keep the -.pdf.
1-Abc.pdf is a pdf containing important stuff
...


