Check Student Result

Loading student records...
S.no Code Conduction Date Name Course Name Marks Test Type Total Obtained Admission Date Date Of Birth Father's Name Date Of Joining Subject Fees
Learning of the Day
Shortcuts & quick tips to boost productivity — organised, practical, and easy to remember.

Downloads – Important Information

Click on the links below to access important study materials, shortcut lists, and financial documents provided by BPA Educators.

📘

Budget 2023 Highlights

Download
💼

Important Tally Shortcuts

Download
📋

Tally Ledger List

Download
🧮

Important Access Shortcuts

Download
💰

Income Tax Calculator (FY 2021-22)

Download
📝

Important MS Word Shortcuts

Download
📊

TDS Chart Rate (FY 2022-23)

Download
📁

Important Busy Shortcuts

Download
☁️

Google Drive Shortcuts

Download
📈

Important Excel Shortcuts

Download
📅

Compliance Calendar (FY 2022-23)

Download
🧾

Income Tax Calculator (FY 2022-23)

Download

Today's Birthdays

Loading birthdays...

Activities Of the Month

Loading activities...

Activities Marks

Loading activities marks...

Batch Launches

Loading batch details...

Exam Records

Loading exam records...

Student Placements

Loading placement records...

Certificates Issued

Loading certificate records...

Excel & Financial Formulas — BPA Educators

A structured, learning-wise list of all important Excel formulas with structure and explanation — categorized for easy reference and practical learning.

Basic Formulas

FormulaStructureExplanation
AVERAGE=AVERAGE(A2:A10)Returns the average (mean) of values in the given range.
COUNT=COUNT(A2:A10)Counts the number of numeric entries in the selected range.
MAX=MAX(A2:A10)Finds the largest value in the selected range.
MEDIAN=MEDIAN(A2:A10)Returns the middle value in an ordered range of numbers.
MIN=MIN(A2:A10)Finds the smallest value in the selected range.
SUM=SUM(A2:A10)Adds all numeric values in the specified range.

💡 Tip: Ensure that your selected range contains only numbers; text entries are ignored by these formulas.

Time Formulas

FormulaStructureExplanation
TODAY=TODAY()Returns the current date; updates automatically each day.
NOW=NOW()Returns the current date and time; volatile function.
DATEDIF=DATEDIF(StartDate,EndDate,"Y|M|D")Finds the difference between two dates in years, months, or days.
YEAR=YEAR(Date)Extracts the year from a date value.
MONTH=MONTH(Date)Extracts the month from a date value.
DAY=DAY(Date)Extracts the day portion of a date.

🕒 Tip: Change cell format to “Date” or “Number” if results appear incorrect.

Logical Formulas

FormulaStructureExplanation
IF=IF(LogicalTest, ValueIfTrue, ValueIfFalse)Tests a condition; returns one value for TRUE and another for FALSE.
OR=OR(Test1, Test2, ...)Returns TRUE if any condition is TRUE.
AND=AND(Test1, Test2, ...)Returns TRUE only if all test conditions are TRUE.

💡 Tip: Combine IF with AND or OR for complex logical testing, e.g., =IF(AND(A1>10,B1<50),"OK","Check").

Lookup Formulas

FormulaStructureExplanation
VLOOKUP=VLOOKUP(LookupValue, TableArray, ColIndex, RangeLookup)Looks for a value vertically in a table and returns data from a specified column.

🔍 Tip: Always use FALSE for exact matches. Lock your range using $ (e.g., $A$2:$C$50) when copying.

Financial Formulas

FormulaStructureExplanation
PMT=PMT(rate, nper, pv, [fv], [type])Calculates periodic loan payment. Rate = interest per period, nper = periods, pv = present value (loan).

💰 Tip: Divide annual rate by 12 for monthly payments. Negative PMT indicates outgoing cash flow.

Statistical Formulas

FormulaStructureExplanation
SUMIF=SUMIF(range, criteria, [sum_range])Sums values meeting a single condition.
SUMIFS=SUMIFS(sum_range, criteria_range1, criteria1, ...)Sums values meeting multiple AND-based conditions.
COUNTIF=COUNTIF(range, criteria)Counts the number of cells matching a condition.
COUNTIFS=COUNTIFS(range1,criteria1,range2,criteria2,...)Counts cells satisfying multiple conditions simultaneously.
AVERAGEIF=AVERAGEIF(range, criteria, [average_range])Finds the average of cells meeting a condition.
AVERAGEIFS=AVERAGEIFS(average_range, criteria_range1, criteria1, ...)Finds average for data meeting multiple criteria.

📊 Tip: Use quotes for criteria, e.g., ">100" or "*Apple*" when matching text or ranges.