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
If I have two percentages e.g. 67% and 80%, I know that I can create a stacked column graph. However, it either adds to 100% or >100%. What I would like to know, is if there is a way to have a column graph with two values, where the 67% is inside the 80% as a different colour and the 80% represents the final 13% on top. This means the total would be 80%.
Yes, plot the increment:
However since I see no programming involved seems Q would be better suited to Super User (where it might soon be migrated).
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 3 years ago.
Improve this question
When I type 0.000, I want the cell to display "0.000" and not "0". How do I stop all of this ridiculous autoformating in Excel.
It is not ridiculous, it is likely the way MS designed it, thinking it will be comfortable for most users (sometimes I disagree with the design of MS, but perhaps not this time).
You have to set the number format to Number, and then set the number of decimal places to 3.
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
Just wondering what breaks the ties amount rows for a routing table. Thank you in advance for the help!
Administrative distance will be used by the routing table as the tie-breaker for candidate routes offered by the routing protocols.
when using the metric value to break a tie between entries in a routing table, the router selects the matching row with the highest or the lowest metric value, since the lower the value the more trusted the source of information is going to be.
That being said there are two parameters a router uses to break the tie;
Administrative Distance
Metric
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 6 years ago.
Improve this question
I have lots of JPEGs from DSLR, and they are roughly about 5-6MB per JPEG. I open any of them using MSPAINT, and click the SAVE and notice the size immediately go down to 2-3MB.
Why? Is Mspaint doing a lossy or lossless compression?
Things Paint May be doing:
Using different quantization tables
Subsampling the Cb and Cr color components
Using optimal huffman tables.
Stripping out metadata.
You an run a JPEG dumping program on the two versions and compare the output to see the changes
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
I have 6 very big directorys and once a day I would like to check size each of this directories for my monitoring. Now I'm using du -s command but it take many time and significantly slows my server. Is any different better way to do this?
Depending on circumstances you could put those directories on seperate partitions, the "used" size of which you can check very quickly with df.
This, of course, means that the directories are limited to the size of their respective partitions, which could be a pain. Hence the "depending on circumstances".
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%))