Soluții

How to creating Bar Charts using the REPT Function in Excel

Another way to create in-cell bar charts is to use the REPT function, which repeats a specified character a given number of times.

In the cell next to the first value you want to visualize, type:

=REPT("|",x)

and press Ctrl+Enter.

In this formula, “|” is the vertical glyph character (enclosed in double quotes) often accessed by pressing Shift or Fn at the same time as the relevant key, and x is a reference to a cell containing a numerical value. Here, the formula references cell B2 and so returns 14 vertical glyphs.

Double-click the fill handle of that cell to repeat the formula down the column.

At the moment, the data is visualized as a tally graph, as the default fonts in Excel place small spaces between each character. To fix this, select the relevant cells, and in the Home tab on the ribbon, select a typeface that doesn’t separate characters with a space, like “Stencil” or “Playbill.”

Where data bars adjust to the column width, bar charts created using the REPT function expand or contract dynamically, regardless of the width of the cells they occupy.

[mai mult...]

How to creating Bar Charts using conditional formatting in Excel

To create in-cell bar charts using conditional formatting, select the cells containing the values, and in the Home tab on the ribbon, click “Conditional Formatting”

Then, hover over “Data Bars,” and select a fill type.

Now, the cells you selected are partially filled according to their relative values in the dataset. The largest value is represented by a fully filled cell, while only zeros will be completely empty.

What’s more, if the values change, so do the lengths of the data bars.

However, maybe you want the data bars to be next to the cells containing the values. In the screenshot above, that would mean that column B contains the values, and column C contains the data bars. To do this, first, select cell C2, type:

=B2

and press Ctrl+Enter to stay in the same cell.

Now, double-click the fill handle to duplicate the formula down the column.

Next, select the duplicated values you just generated, and press Ctrl+1 to open the Format Cells dialog box. Then, in the Number tab, click “Custom,” type ;;; (three semicolons) into the text field, and click “OK.”

Even though the cells in column C appear empty, they still contain the values you duplicated from column B earlier—they’re just invisible.

Now, apply the conditional formatting data bars to the cells containing the invisible values.

[mai mult...]

Cum personalizezi GRUB

Puteți modifica fișierul GRUB pentru a adăuga intrări personalizate, a seta un sistem de operare implicit și chiar a-i adăuga o temă pentru a arăta bine. De exemplu, uneori GRUB nu va detecta automat un anumit sistem de operare instalat pe sistemul dvs., așa că doriți să îl adăugați manual. Alternativ, puteți adăuga o imagine ISO de salvare sau memtest – un instrument util care testează memoria RAM a computerului pentru erori, pentru a depana blocările și blocările aleatorii. GRUB vă permite să adăugați aceste opțiuni manual editând fișierul /etc/grub.d/40_custom.

[mai mult...]

Fiecare utilizator Linux Dual-Booter ar trebui să știe cum să facă asta

De ce este important GRUB pentru bootare duală Linux
GRUB, prescurtare de la GRand Unified Bootloader, este bootloader-ul standard utilizat de majoritatea distribuțiilor Linux populare. Este un program care încarcă și transferă controlul către kernel-ul sistemului de operare în timpul pornirii sistemului. GRUB apare de obicei ca un meniu de selecție a bootării, permițându-vă să alegeți sistemul de operare în care doriți să bootați (printre altele, vom discuta mai târziu) atunci când porniți un PC cu bootare duală. Chiar și în configurațiile cu un singur sistem de operare, GRUB este prezent – de obicei este ascuns de dvs. sau setat cu un timeout foarte scurt, așa că este posibil să nu îl observați.

Să presupunem că folosești Windows 11 dual-boot cu o distribuție Linux. Aici ai de-a face cu două bootloader-e – GRUB pentru Linux și Windows Boot Manager pentru Windows 11. Windows Boot Manager este menit să pornească Windows și nu va detecta distribuția Linux în mod implicit. Va trebui să intri în BIOS/UEFI pentru a schimba ordinea de boot sau să ajustezi cu BCDEdit pentru a porni în sistemul tău Linux – ceea ce poate fi o adevărată bătaie de cap!

Din fericire, GRUB poate detecta automat Windows 11 și îți va permite să alegi oricare dintre sistemele de operare pentru a porni. Această compatibilitate îmbunătățită este ceea ce face ca GRUB să fie atât de puternic, popular și ceva ce ar trebui să știi ca un dual-booter Linux. De exemplu, pe PC-ul meu cu dual-boot Linux-Windows, Windows Boot Manager nu detectează partiția mea Garuda Linux, dar GRUB recunoaște ambele sisteme de operare.

[mai mult...]