Microsoft Excel Workbook 01 (Autosaved)
Microsoft Excel Workbook 01 (Autosaved)
S# Name Test 1 Test2 Test3 Total Marks Obt Marks Avg Remarks
1 Asad 35 24 24
2 Ummer 56 78 45
3 Hassan 12 13 23
4 Waqas 56 76 34
5 Fahd 26 75 87
6 Bilal 53 56 8
7 Danish 65 67 89
Minimum? Maximum?
SYNTAX
1- Calculate Total =SUM (FIRST RANGE: LAST RANGE)
2- Calculate Average =AVERAGE (FIRST RANGE: LAST RANG)
3- Calculate Maximum Value of Test 1 & Minimum Value of Test 2.
=MAX (FIRST RANGE: LAST RANGE)
=MIN (FIRST RANGE: LAST RANGE)
4- Calculate Remarks Using IF Condition.
=IF (TOTAL # > 100,"GOOD","POOR")
Purchase
Shop# Name Product Name Purchase Rate Quantity
Amount
501 MANSOOR MONITOR 5000 10
502 MAQSOOD MOUSE 100 15
503 SHAHID MOUSE PAD 50 20
504 ZAHID SALEEM KEYBOARD 250 25
505 AMAAD UD DIN SPEAKER 1000 30
Total Amount
Cash
Balance
Microsoft Excel Worksheet 03
A. Practice using Excel by copying this Worksheet
Purchas
Purchaser Pro Purchase Sale Sale
S# Region Qty e Profit/Loss
Name Name Rate Rate Amount
Amount
S# NAME BASIC SAL SALE 1 SALE 2 SALE 3 TOT SALE ALL 1 ALL 2 ALL 3
1 NAVEED 2500 900 800 250
2 AHSAAN 2000 150 250 900
3 MOHSIN 2200 100 300 500
4 ZAHID 2500 450 250 400
5 BABAR 2400 150 100 400
6 QADIR 3500 450 300 250
7 ARIF 3000 250 200 350
SYNTAX
1- Calculate Total Sale
2- Calculate All 1
=IF (TOT SALE>1000, BASIC*35%, IF (TOT SALE>=800, BASIC*25%,"TRY AGAIN"))
3- Calculate ALL 2 by using IF (OR) Condition
=IF (OR (TOT SALE>=800, BASIC=2500), 1500, 1000)
ID# Name Test 1 Test 2 Test 3 TEST 4 Test 4 Total Obt Per% Remarks Gread
201 Hammad 45 65 68 69 85 500 332
202 Wahab 23 58 48 68 84 500 281
203 Ubaid 34 58 35 65 82 500 274
204 Taimoor 94 75 87 62 87 500 405
205 Abeel 23 69 68 60 89 500 309
206 Ahsan 36 39 62 64 82 500 283
207 Sheraz 38 56 85 61 83 500 323
208 Anus 56 67 65 69 80 500 337
SYNTAX
1- Calculate Marks Obtain
2- Calculate Per%
3- Calculate Remarks by using IF Condition
=IF(PER%>=80,"EXLT",IF(PER%>=70,"V.GOOD",IF(PER%>=60,"GOOD","BAD))
4- Calculate Grade by using IF Condition
=IF(PER%>=80,"A+",IF(PER%>=70,"A",IF(PER%>=60,"B","FAIL))
Microsoft Excel Worksheet 07
A. Practice using Excel by copying this Worksheet
Q3. If Total Salary is greater than 20000 then “A” If Total Salary is greater than 10000 then “B” otherwise “C”
Formula Description Example
CONCATENATE Joins two or more text strings into one. CONCATENATE("Hello","",
"World")
TEXT Formats a number and converts it to text. TEXT(1234.56,"$#,##0.00")
TRIM Removes all extra spaces except single spaces TRIM("HelloWorld")
Between words.
LEN Returns the number of characters in a text string. LEN("Excel")
LEFT Returns the first character(s) in a text string. LEFT("Excel",2)
RIGHT Returns the last character(s) in a text string. RIGHT("Excel",3)
MID Returns a specific number of characters from a text MID("Excel",2,3)
string, starting at the specified position.
FIND Finds one text value within another (case- FIND("e","Excel")
Sensitive).
SUBSTITUTE Replaces existing text with newt ext in a string. SUBSTITUTE("2024/11/21","/",
"-")
LEFT Returns the first character(s) in a text string. LEFT("Excel",2)
Text Formulas