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 days ago.
Improve this question
Looking for an automated process:
We have multiple cable drums in 'stock',
The cable is then cut into lengths and recorded using the batch number from the relevant drum.
I want to create a 'remaining QTY' amount as each individual cut cable entry is entered into a spreadsheet.
enter image description here
Text: Remaining QTY = QTY - Used (where first column header = first column)
Excel: F2 = E2 - SUMIF(A10, A2, C10)
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 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)
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 4 years ago.
Improve this question
Got a list of data with 7 columns each with a Y in, I want to add a formula that will check for a Y in the column then concatenate the headings if correct and ignore if not.
See below example
Is this possible?
Try this User Defined Function.
=TextJoinIfs(", ", 0, 0, B$1:H$1, B2:H2, "y")
I did not get the TextJoinIfs to work, sadly, looks neat. If you have the same problem maybe this can be a solution. Not pretty I know...
=TEXTJOIN(",",TRUE,IF(IFERROR(MATCH("Y",A2),FALSE),"col 1",""),IF(IFERROR(MATCH("Y",B2),FALSE),"col 2",""),IF(IFERROR(MATCH("Y",C2),FALSE),"col 3",""),IF(IFERROR(MATCH("Y",D2),FALSE),"col 4",""),IF(IFERROR(MATCH("Y",E2),FALSE),"col 5",""),IF(IFERROR(MATCH("Y",F2),FALSE),"col 6",""),IF(IFERROR(MATCH("Y",G2),FALSE),"col 7",""),)
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 4 years ago.
Improve this question
For my schools sports day i need to convert the position someone comes in to a score.
I need 2 kinds a competition of 4 people and of 8 people
so:
Place -> Score
1st->8,
2nd->7,
3rd->6,
...,
8th->1
and
1st->8,
2nd->6,
3rd->4,
4th->2
Thanks in advance
Edit: The place just comes out as 1,2,3,...,8 or 1,2,3,4 not 1st,2nd ect.
As I understood, simply you can do something like this,
B1 -> =IF(A2>8,"NA",9-A2)
C1 -> =IF(A2>4,"NA",10-2*A2)
Once you enter the place in A1, you will get the score accordingly as below.