
korfolatis έγραψε:Μπορεί κανείς να μου πει πώς τοποθετούμε στο Excel τα δεδομένα μιας στήλης ανάποδα;
Δηλαδή η τιμή της πρώτης σειράς να πάει στην τελευταία σειρά, της δεύετρης στην προτελευταία κτλ...
Αν και καθυστερημένα βρήκα τον τρόπο ψαχουλεύοντας στο yahoo answers, καθώς το χρειάστηκα και εγώ.
Ιδού:
Reversing the order of a list, the following array formula will return the desired result.
in cell B1, type this array formula:
= OFFSET(A$1:A$9,MAX( ROW(B$1:B$9))-ROW(), 0)
press Ctrl+Shift+Enter
and use Fill Down from the Edit menu to copy this formula down into all the cells in B1:B9
Remember this is an array formula.
When an array formula is displayed, it is surrounded by braces {}
We do not enter the braces. Instead, when we enter an array formula, press Ctrl+Shift+Enter, rather than just Enter. Excel will automatically add the braces.
{= OFFSET(A$1:A$9,MAX( ROW(B$1:B$9))-ROW(), 0)}
We must press Ctrl+Shift+Enter when first enter an array formula, and also each time we edit the formula later.