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
I have an excel file with a column containing some numbers i need to normalize the distribution between 0 and 1 using this formula x-min(distribution)/max(distribution)-min(distribution). any help will be appreciated.
Try this:
=(G9-MIN($G$9:$G:$12))/(MAX($G$9:$G$12)-MIN($G$9:$G$12))
Related
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 1 year ago.
Improve this question
I was using Linux terminal and I wondered why some files have different colors from others
do they only have colors to show the type and permissions given to the file?
It looks like that each color do have a meaning, take a look at this answer: https://askubuntu.com/questions/17299/what-do-the-different-colors-mean-in-ls.
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 5 years ago.
Improve this question
ID Amount
1 100
1 200
1 200
2 400
3 200
I want to find the average amount for ID number 1. How to do it?
Formula =AVERAGEIF(A1:A5,1,B1:B5)
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 7 years ago.
Improve this question
How to calculate the average of the 80 percentile to 100 percentile of a column, I try to use the averageif() functions, but it only support the condition ">1" instead of a formula condition >percentile(A1:A100,80)
Your formula is almost correct. Just some minor syntax issues. Try:
=AVERAGEIF(A1:A100,">"&PERCENTILE(A1:A100,80%))
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
On Linux systems there are some special paths like /etc/cron.d/, /etc/apt/sources.list.d/. That are the paths where you can place your own custom configs in separate files.
My question is — what does letter d mean?
directory :) Since there can possibly be a /etc/cron file as well. It is the same for /etc/modprobe.d/
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
For example the client program lists the worksheet limitations here:
http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP010342495.aspx
But I can't find anything on the limitations of the web app.
Based on #Tim Williams response I think the row and column limitations for the Excel web app are 16384 cols x 1048576 rows.