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
In one part of my spreadsheet, I am calculating odds ratios. I have one column (V) with the OR, and then W and X with the confidence intervals. In another column (M), I am trying to get excel to list this information in one cell.
i.e.
0.78 (0.25, 2.46)
I have just been copying the information, but this is prone to errors and takes ages, so I am looking for a better way.
Any ideas?
Try a formula like:
=[#columnV]&"("&[#columnW]&","&[#columnX]&")"
This should concatenate row wise down the entire table with the desired format.
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 2 years ago.
Improve this question
I have European style of numbers (with a comma). However, when I download a file from a website, where dots are used in values and try to open it in excel, some of the numbers becomes a date. I.e. in the file values 18.2 is transformed to 18.feb. How avoid this to happen?
Right click on relevant cell, press Format Cells, and under Category choose Text.
Now the cell is defined as general text, not date as default.
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.
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
I have nearly 800 cells(A1:A800) in my main sheet. Each cell should copy to different sheet with an order. First cell in main sheet('main'!A1) copy to first sheet('1'!A1) , second cell('main'!A2) copy to second sheet('2'!A1) etc.I created 800 sheets already. I don't know VBA very well. I couldn't find any code that fits my problem. Thanks for help!
If I am seeing what you are trying to do, it shouldn't be too hard.
You could hardcode a for loop to 800.
for i = 2 to 800
Range("A"&i).Copy Destination:=Sheets(i).Range("A" & i)
next
This is similar albeit a bit more involved
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
I'm working on a budgeting spreadsheet that has a different replacement cycle for equipment and I want to visualize when everything will be scheduled to be replaced.
Column 1=name, Column 2=deployed, Column 3=expected life, Column 4=retire date, Column 5=price
I want to have another table next to it that shows the next several deploy dates (for the next 15 years) based on the expected life. Right now, I'm having to manually count over X number of cells and enter in the price and then count over again.... for each row.
I know there has to be a automated way to do this, but I'm new to excel macros and I've looked at several functions, but can't get anything figured out. What functions should I be looking at?
A formula like:
=IF((G$1-YEAR($B2))/$C2=ROUND((G$1-YEAR($B2))/$C2,0),$E2,"")
Should do the trick
(the above for column G, it is assumed the year is in G1)
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 8 years ago.
Improve this question
Rather than an Excel formula of this kind:
=IF(AVERAGE(A1:A4)<4,"POOR",IF(AVERAGE(A1:A4)<5,"Meet Expectation",IF(AVERAGE(A1:A4)<7,"Good",IF(AVERAGE(A1:A4)<8,"Excellent","Outstanding"))))
how might I achieve similar results with a lookup table?
With a lookup table (and without requiring an exact match):
Where an exacct match is not found it defaults to the next lower matching value. 9 can not be found but 8 can be, hence Outstanding. You have not been specific about the breakpoints (eg 5 seems to be both Meet Expectation and Good) but the table is easy to adjust to suit by adding or deducting a very small amount to the number to the left of Good.
The table is here named Qarray and can be placed anywhere in the same workbook if the named range is of Workbook scope.
Formula:
=IF(A1<4,"POOR",IF(AND(A1>=4,A1<5),"Meets Expectations",IF(AND(A1>=5,A1<7),"Good",IF(AND(A1>=7,A1<8),"Excellent","Outstanding"))))