Sum numbers in a cell that appear as a string [closed] - excel

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Example: string in cell
1 1 1 1 (total should be 4)
0.5 0.5 (total should be 1)
0.125 0.125 (total should be 0.250)
0.125 0.0625 8 1 (total should be 9.1875)

First use Text To Columns to get the individual numbers into individual cells. Then use the =SUM() function across the individual numbers.
EDIT#1
If you need a VBA solution, then consider:
Public Function AddCell(s As String) As Variant
ary = Split(Trim(s), " ")
AddCell = 0
For i = LBound(ary) To UBound(ary)
AddCell = AddCell + ary(i)
Next i
End Function

Related

Write a program to compute the sum of all divisors of positive integer input n. Using Python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Write a program to compute the sum of all divisors of positive integer input n.
input example: a positive integer 10
output:1+2+5+10=18
def factor(n): if n==0: return[0] if n<=3: return[1] x=n list=[1] i=2 while i<=x: if x%i==0: if i !=list[-1]: list.append(i) x=x//i i=2 continue i+=1
Try this
n=int(input("Enter an integer:"))
print("The sum of all divisors of given positive integer input is:")
sum = 0
for i in range(1,n+1):
if(n%i==0):
sum = sum + i
print(sum)
Enter an integer:36
The sum of all divisors of given positive integer input is:
91
Hope this will be of your help.

frequency of letters at position in string [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to count the frequency of 4 letters at every position across strings. The letters are A, T, G, C
TGAGGTAGTAGTTTGTGCTGTTAT
TAGTAGTTTGTGCTGTTA
TGAGGTAGTAGTTTGTAC
TGAGAACTGAATTCCATAGG
desired output:
Pos1 Pos2 Pos3 and so on.
A 0 1
T 4 0
C 0 0
G 0 3
So far I have used an R package called Biostrings, which works, but I wonder if perl would do this?
For the record, for
x = "TGAGGTAGTAGTTTGTGCTGTTAT
TAGTAGTTTGTGCTGTTA
TGAGGTAGTAGTTTGTAC
TGAGAACTGAATTCCATAGG"
a Biostrings solution is
library(Biostrings)
consensusMatrix(DNAStringSet(strsplit(x, "\n")[[1]]))
which will be fast for millions of sequences.

Select/Highlight Columns in Excel 2010 Based on Their Addresses [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have a column in Excel which contains the addresses of the cells that need to be selected and then highlighted. Please find below a snapshot:
Col# Row# Corresponding Address
8 1 $H$1
9 2 $I$2
10 3 $J$3
10 4 $J$4
9 5 $I$5
10 6 $J$6
10 7 $J$7
10 8 $J$8
11 9 $K$9
12 10 $L$10
12 11 $L$11
11 12 $K$12
As an example, I need to select cell $H$1 and highlight it.
I would like to perform this task automatically for a large matrix. What would the vba code be for this task?
Any help is highly appreciated
You would need to loop through the Corresponding Address column and set, (assuming that you want the cell colour changed in order to highlight it) the Interior.Colour to a RGB value:
Dim x As Worksheet, y As Worksheet
Dim CtrA As Long
Set x = Worksheets("SheetName1")
Set y = Worksheets("SheetName2")
For CtrA = 2 To x.Rows.Count
y.Range(x.Range("C" & CtrA)).Interior.Color = RGB(0, 255, 0)
Next
where x is a reference to the sheet containing the table in your question, and y is a reference to the sheet that contains the cells you want to highlight.

How can I SUMIFS where criteria is a set of numbers from a column? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have an Excel file that looks like this:
ZONES Count Area 1 = (SUM OF ZONE COUNT)
------------------------------------------------------------------------------
1 100 1
2 50 2
3 110 5
4 90 7
5 40
6 10
7 0
8 80
What I need to do is make (SUM OF ZONE COUNT) say 190 since 100+40+50+0 = 190. I've tried:
=SUMIFS(B3:B10, A3:A10, C3)
And it will return 100. When I try:
=SUMIFS(B3:B10, A3:A10, "="&C3:C6)
It returns 0.
I need to set the criteria to be a range instead of an individual cell.
Is this possible?
Try this version
=SUMPRODUCT(SUMIFS(B3:B10,A3:A10,C3:C6))
because the criteria range is four cells the SUMIFS function will return an "array" of four values - SUMPRODUCT is used to sum those four values
You can also use SUM but the formula needs to be "array entered", i.e.
=SUM(SUMIFS(B3:B10,A3:A10,C3:C6))
confirm with CTRL+SHIFT+ENTER

Add if row contains a string in excel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Without the use of macros or anything fancy, is it possible to write an excel formula that would add up Col-1 rows that correspond to Col-2 rows having the string 'st'?
+----+-------+-------+
+ # + Col-1 + Col-2 +
+----+ ------+-------+
+ 1 + 1 + an st +
+ 2 + 2 + f st +
+ 3 + 1 + st fr +
+ 4 + 1 + bd bd +
+----+-------+-------+
So in this example, it should add up rows 1,2 and 3 and return 1+2+1 = 4
There is a way. Use this: =SUMPRODUCT(ISNUMBER(FIND("st",B1:B4))*A1:A4)
Why do we not just use:
=SUMIF(B1:B4,"*st*",A1:A4)
I'd introduce a third column. The values of the third column will be the one of the first if the second contains the string, 0 otherwise.
Summing up the values in the third column will return the result you want.
If you don't like to display or print the column you introduce you should hide it.
Assuming the first row is in Row 1, starting at column a, you can add another column to the right which checks for each, using this formula:
=IF(ISNUMBER(SEARCH("st", C1)), B1, 0)
That should return 1, 2, 1, 0 respectively for your rows.
Sum that column for the total.

Resources