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 2 years ago.
Improve this question
I need to calculate this sum in excel and i don't want go throw it all, is there any function i can use that do it for me?
the Pn is Column P and n is the row from 1 to 206
I am going to assume the Pn is Column P and n is the row from 1 to 206
=SUMPRODUCT((P1:P206-P208)^2)
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to count the columns that have the same name. I need a formula to apply it to all data.
For example, I am trying to count the amount of cloumns with ID=11 and write them in row "N".
Is there a simple formula for this?
Try using COUNTIF:
=COUNTIF(A3:A25, 11)
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 3 years ago.
Improve this question
I want to add suffix ')' in all the cells in excel which are in '(XXX' format.
Example:
Data: (1123 (212 254 123 (124 (12
desired: (1123) (212) 254 123 (124) (12)
Thanks,
Srinivas K.
Create a row or column next to your data, depending on how it's laid out, and use:
=IF(AND(LEFT(A1,1) = "(", RIGHT(A1,1) <> ")"),CONCAT(A1,")"),A1)
Where A1 is your first cell of data you wish to manipulate, then drag down or across for all valid cells.
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 3 years ago.
Improve this question
I have a column in an excel-sheet like this:
a_bcdfg02fga
k_lmnop05fab
x_yzabd03ea
I would like to substract the number by 1 in these string to get a column like this
a_bcdfg01fga
k_lmnop04fab
x_yzabd02ea
I never face such a problem so I don't even know where to start.
Use a simple formula:
=LEFT(A1,7)&text(MID(A1,8,2)-1,"00")&MID(a1,10,20)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
How to count the number of authors in a column? I need the count on
I'm assuming that you have 10 authors in a column A.
The first record in A2 and last in A11. Then You can get the count in A12 by using this formula
=COUNTA(A2:A11)
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 2 years ago.
Improve this question
I would like to have the range (address) of the cell where is my table like :
Column = Range(table_NB.DataBodyRange(1, 1))
Do you have the correct code for this ?
To get the address of the first cell in a table:
MsgBox ListObjects(1).DataBodyRange.Cells(1, 1).Address