by admin | May 3, 2025 | Excel Tips & Tricks
πΉ Method 1: Using an Apostrophe Type ‘000123 β Excel treats it as text and displays the leading zeros. πΉ Method 2: Format as Text Select the cells Right-click β Format Cells β Choose Text Now enter numbers with zeros (e.g., 00123), and they will stay. πΉ Method...
by admin | Apr 19, 2025 | Excel Tips & Tricks
πΉ Formula to Calculate Percentage Marks π Formula: =B2*100/C2 πΉ Explanation: B2 β Marks Obtained C2 β Total Marks Multiplies by 100 to convert into percentage format. πΉ Example Output: Marks Obtained (B)Total Marks (C)Percentage FormulaResult...
by admin | Apr 18, 2025 | Excel Tips & Tricks
πΉ Use the RANK Function to Find Position in a List π Formula: =RANK(C6, $C$6:$C$30) πΉ Explanation: C6 β The cell you want to rank. $C$6:$C$30 β The range of values where ranking is applied. This formula assigns a rank based on the highest value (default descending...
by admin | Apr 17, 2025 | Blog, Excel Tips & Tricks
πΉ Automatically Get Today’s Date in Excel π Formula: =TODAY() πΉ Explanation: This formula returns the current date and updates automatically every day. The format will match your systemβs date settings (e.g., 03-Apr-2025). πΉ Example Usage: FormulaOutput (If...
by admin | Apr 16, 2025 | Excel Tips & Tricks
πΉ How to Sum Values for a Specific State in Excel π Formula to Sum Only ‘Delhi’ Amounts: =SUMIF(C:C, “Delhi”, D:D) πΉ Explanation: C:C β The column where states are listed. “Delhi” β The condition to filter only “Delhi”....
by admin | Apr 15, 2025 | Excel Tips & Tricks
π Formula: =DATE(RIGHT(B7,4), MID(B7,3,2), LEFT(B7,2)) πΉ Explanation: If B7 contains a number like “25032024” (DDMMYYYY format), the formula: Extracts the year β RIGHT(B7,4) β 2024 Extracts the month β MID(B7,3,2) β 03 (March) Extracts the day β LEFT(B7,2)...