SlideShare a Scribd company logo
1 of 2
Download to read offline
1 MS Access: Level II (2688-01)
MS Access: Advanced Functions
Lesson Notes
Author: Pamela Schmidt
iif Function
iif («expr», «truepart», «falsepart»)
There are three parts to the iif function divided by commas.
«expr» = the test
«truepart» = What MS Access should do if the test returns true.
«falsepart») = What MS Access should do if the test returns false.
The iif function can be used in queries, forms, reports, macros, modules.
When used in a query, create a new field, then add the function. The function can be typed in
or the expression builder can be accessed by right clicking on the field.
Be sure to enclose field names in square brackets.
isNull Function
IsNull («varexpr»)
The isNull function examines the field to see if it is empty. It returns a value of either true or
false. The isNull function can be used in combination with other functions such as the iif
function.
Example
This example returns the person’s full name, but only shows the comma if the suffix exists. If
the title is Dr., it drops the title if there is also a Suffix. It also does not put in spaces if a part of
the name does not exist.
FullName: IIf(IsNull([Title]),"",IIf([Title]="Dr." Or [Title]="Dr",IIf(IsNull([Suffix]),[Title] & " ",""),[Title] & "
")) & IIf(IsNull([FirstName]),"",[FirstName] & " ") & IIf(IsNull([LastName]),"",[LastName]) &
IIf(IsNull([Suffix]),"",", " & [Suffix])
MS Access: Advanced Functions
2
Left Function
Left («stringexpr», «n»)
The Left function returns the characters starting at the left of the string.
The Left function has two parts
«stringexpr» = the text field to examine
«n» = the numbers of characters to return starting on the left
Example
This example returns the first five characters of the Postal Code.
FirstFive: Left([PostalCode],5)
DateAdd Function
=DateAdd("h", 3, [ArrivalTime])
The DateAdd function adds hours to the current time.

More Related Content

What's hot

Microsoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionMicrosoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionExcel
 
Using other functions
Using other functionsUsing other functions
Using other functionsCha Mostierra
 
Sql update and retrieve
Sql update and retrieveSql update and retrieve
Sql update and retrieveAnmol Purohit
 
Write a program that initializes an array - of - double and then copies the c...
Write a program that initializes an array - of - double and then copies the c...Write a program that initializes an array - of - double and then copies the c...
Write a program that initializes an array - of - double and then copies the c...licservernoida
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHMridul Bansal
 
Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
Supplement 13.1 blitzer tm4th
Supplement 13.1 blitzer tm4thSupplement 13.1 blitzer tm4th
Supplement 13.1 blitzer tm4thGideon Weinstein
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use ithayat25in
 
The Advance Spreadsheet Skills
The Advance Spreadsheet SkillsThe Advance Spreadsheet Skills
The Advance Spreadsheet SkillsRjDela2
 
Dictionary and sets-converted
Dictionary and sets-convertedDictionary and sets-converted
Dictionary and sets-convertedMicheal Ogundero
 
Sql server ___________ (advance sql)
Sql server  ___________  (advance sql)Sql server  ___________  (advance sql)
Sql server ___________ (advance sql)Ehtisham Ali
 
python operators.pptx
python operators.pptxpython operators.pptx
python operators.pptxirsatanoli
 
data structure, stack, stack data structure
data structure, stack, stack data structuredata structure, stack, stack data structure
data structure, stack, stack data structurepcnmtutorials
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchRakesh Sah
 

What's hot (20)

Microsoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionMicrosoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP Function
 
Using other functions
Using other functionsUsing other functions
Using other functions
 
Sql update and retrieve
Sql update and retrieveSql update and retrieve
Sql update and retrieve
 
Write a program that initializes an array - of - double and then copies the c...
Write a program that initializes an array - of - double and then copies the c...Write a program that initializes an array - of - double and then copies the c...
Write a program that initializes an array - of - double and then copies the c...
 
Python lists
Python listsPython lists
Python lists
 
Csharp_List
Csharp_ListCsharp_List
Csharp_List
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCH
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
Supplement 13.1 blitzer tm4th
Supplement 13.1 blitzer tm4thSupplement 13.1 blitzer tm4th
Supplement 13.1 blitzer tm4th
 
Data Structure (Stack)
Data Structure (Stack)Data Structure (Stack)
Data Structure (Stack)
 
Stack project
Stack projectStack project
Stack project
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use it
 
The Advance Spreadsheet Skills
The Advance Spreadsheet SkillsThe Advance Spreadsheet Skills
The Advance Spreadsheet Skills
 
Dictionary and sets-converted
Dictionary and sets-convertedDictionary and sets-converted
Dictionary and sets-converted
 
Sql server ___________ (advance sql)
Sql server  ___________  (advance sql)Sql server  ___________  (advance sql)
Sql server ___________ (advance sql)
 
python operators.pptx
python operators.pptxpython operators.pptx
python operators.pptx
 
10053 - null is not nothing
10053 - null is not nothing10053 - null is not nothing
10053 - null is not nothing
 
List interface
List interfaceList interface
List interface
 
data structure, stack, stack data structure
data structure, stack, stack data structuredata structure, stack, stack data structure
data structure, stack, stack data structure
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
 

Viewers also liked

100 cách diễn giải tiếng anh
100 cách diễn giải tiếng anh100 cách diễn giải tiếng anh
100 cách diễn giải tiếng anhHọc Huỳnh Bá
 
Bang chu viet_tat_ten_loai_van_ban
Bang chu viet_tat_ten_loai_van_banBang chu viet_tat_ten_loai_van_ban
Bang chu viet_tat_ten_loai_van_banHọc Huỳnh Bá
 
4 hd lam viec lan dau don vi
4   hd lam viec lan dau don vi4   hd lam viec lan dau don vi
4 hd lam viec lan dau don viHọc Huỳnh Bá
 
Các thao tác cơ bản trên photoshop cs3 (phần 2)
Các thao tác cơ bản trên photoshop cs3 (phần 2)Các thao tác cơ bản trên photoshop cs3 (phần 2)
Các thao tác cơ bản trên photoshop cs3 (phần 2)Học Huỳnh Bá
 
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011Học Huỳnh Bá
 
Giáo trình học corel draw
Giáo trình học corel drawGiáo trình học corel draw
Giáo trình học corel drawHọc Huỳnh Bá
 
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN tn035
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN  tn035GIÁO TRÌNH LẬP TRÌNH CĂN BẢN  tn035
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN tn035Học Huỳnh Bá
 
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết full version)
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết   full version)Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết   full version)
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết full version)Học Huỳnh Bá
 
Common english & chinese phrases for administrative personnel(third edition) ...
Common english & chinese phrases for administrative personnel(third edition) ...Common english & chinese phrases for administrative personnel(third edition) ...
Common english & chinese phrases for administrative personnel(third edition) ...Học Huỳnh Bá
 
Câu so sánh trong tiếng Trung
Câu so sánh trong tiếng TrungCâu so sánh trong tiếng Trung
Câu so sánh trong tiếng TrungNguyen Huyen Ngoc
 
6 qd phan cong huong dan tap su thu viec
6   qd phan cong huong dan tap su thu viec6   qd phan cong huong dan tap su thu viec
6 qd phan cong huong dan tap su thu viecHọc Huỳnh Bá
 
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)Học Huỳnh Bá
 
Các thao tác cơ bản trên adobe illustrator cs3
Các thao tác cơ bản trên adobe illustrator cs3Các thao tác cơ bản trên adobe illustrator cs3
Các thao tác cơ bản trên adobe illustrator cs3Học Huỳnh Bá
 
Những rắc rối ở khách sạn
Những rắc rối ở khách sạnNhững rắc rối ở khách sạn
Những rắc rối ở khách sạnNguyen Huyen Ngoc
 
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...Học Huỳnh Bá
 

Viewers also liked (20)

100 cách diễn giải tiếng anh
100 cách diễn giải tiếng anh100 cách diễn giải tiếng anh
100 cách diễn giải tiếng anh
 
Bang chu viet_tat_ten_loai_van_ban
Bang chu viet_tat_ten_loai_van_banBang chu viet_tat_ten_loai_van_ban
Bang chu viet_tat_ten_loai_van_ban
 
4 hd lam viec lan dau don vi
4   hd lam viec lan dau don vi4   hd lam viec lan dau don vi
4 hd lam viec lan dau don vi
 
Các thao tác cơ bản trên photoshop cs3 (phần 2)
Các thao tác cơ bản trên photoshop cs3 (phần 2)Các thao tác cơ bản trên photoshop cs3 (phần 2)
Các thao tác cơ bản trên photoshop cs3 (phần 2)
 
Vb6 16 (6)
Vb6 16 (6)Vb6 16 (6)
Vb6 16 (6)
 
Ngữ pháp tiếng anh
Ngữ pháp tiếng anhNgữ pháp tiếng anh
Ngữ pháp tiếng anh
 
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011
Quy tr nh tuy n d_ng s_a đ_i ngày 3-01-2011
 
Giáo trình học corel draw
Giáo trình học corel drawGiáo trình học corel draw
Giáo trình học corel draw
 
Vb6 16 (14)
Vb6 16 (14)Vb6 16 (14)
Vb6 16 (14)
 
H11220
H11220H11220
H11220
 
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN tn035
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN  tn035GIÁO TRÌNH LẬP TRÌNH CĂN BẢN  tn035
GIÁO TRÌNH LẬP TRÌNH CĂN BẢN tn035
 
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết full version)
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết   full version)Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết   full version)
Các thao tác cơ bản trên photoshop cs3 (ghi chép lý thuyết full version)
 
Common english & chinese phrases for administrative personnel(third edition) ...
Common english & chinese phrases for administrative personnel(third edition) ...Common english & chinese phrases for administrative personnel(third edition) ...
Common english & chinese phrases for administrative personnel(third edition) ...
 
Bảng chữ cái katakana
Bảng chữ cái katakanaBảng chữ cái katakana
Bảng chữ cái katakana
 
Câu so sánh trong tiếng Trung
Câu so sánh trong tiếng TrungCâu so sánh trong tiếng Trung
Câu so sánh trong tiếng Trung
 
6 qd phan cong huong dan tap su thu viec
6   qd phan cong huong dan tap su thu viec6   qd phan cong huong dan tap su thu viec
6 qd phan cong huong dan tap su thu viec
 
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)
Cẩm nang du lịch nha trang (chơi gì?, xem gì?, ăn gì khi đi du lịch Nha Trang?)
 
Các thao tác cơ bản trên adobe illustrator cs3
Các thao tác cơ bản trên adobe illustrator cs3Các thao tác cơ bản trên adobe illustrator cs3
Các thao tác cơ bản trên adobe illustrator cs3
 
Những rắc rối ở khách sạn
Những rắc rối ở khách sạnNhững rắc rối ở khách sạn
Những rắc rối ở khách sạn
 
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...
办公室里常用到的英语和越南语口语 (第2版) common english & chinese phrases for administrative pe...
 

Similar to Ms access ii (class 5) iff function

Python_Unit-1_PPT_Data Types.pptx
Python_Unit-1_PPT_Data Types.pptxPython_Unit-1_PPT_Data Types.pptx
Python_Unit-1_PPT_Data Types.pptxSahajShrimal1
 
Although people may be very accustomed to reading and understanding .docx
Although people may be very accustomed to reading and understanding .docxAlthough people may be very accustomed to reading and understanding .docx
Although people may be very accustomed to reading and understanding .docxmilissaccm
 
Notes5
Notes5Notes5
Notes5hccit
 
Functional programming ii
Functional programming iiFunctional programming ii
Functional programming iiPrashant Kalkar
 
Python-review1.ppt
Python-review1.pptPython-review1.ppt
Python-review1.pptjaba kumar
 
Introduction To Programming with Python-4
Introduction To Programming with Python-4Introduction To Programming with Python-4
Introduction To Programming with Python-4Syed Farjad Zia Zaidi
 
Python-review1.pdf
Python-review1.pdfPython-review1.pdf
Python-review1.pdfpaijitk
 
You must implement the following functions- Name the functions exactly.docx
You must implement the following functions- Name the functions exactly.docxYou must implement the following functions- Name the functions exactly.docx
You must implement the following functions- Name the functions exactly.docxSebastian6SWSlaterb
 
PYTHON -Chapter 2 - Functions, Exception, Modules and Files -MAULIK BOR...
PYTHON -Chapter 2 - Functions,   Exception, Modules  and    Files -MAULIK BOR...PYTHON -Chapter 2 - Functions,   Exception, Modules  and    Files -MAULIK BOR...
PYTHON -Chapter 2 - Functions, Exception, Modules and Files -MAULIK BOR...Maulik Borsaniya
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.comDavisMurphyB81
 
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docx
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docxAssg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docx
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docxfestockton
 
Lewis jssap3 e_labman02
Lewis jssap3 e_labman02Lewis jssap3 e_labman02
Lewis jssap3 e_labman02auswhit
 
I need help with this code working Create another project and add yo.pdf
I need help with this code working Create another project and add yo.pdfI need help with this code working Create another project and add yo.pdf
I need help with this code working Create another project and add yo.pdffantoosh1
 
Lesson 4A - Inverses of Functions.ppt
Lesson 4A - Inverses of Functions.pptLesson 4A - Inverses of Functions.ppt
Lesson 4A - Inverses of Functions.pptssuser78a386
 
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docx
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docxISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docx
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docxpriestmanmable
 

Similar to Ms access ii (class 5) iff function (20)

pyton Notes9
pyton Notes9pyton Notes9
pyton Notes9
 
ex 2.pdf
ex 2.pdfex 2.pdf
ex 2.pdf
 
Python_Unit-1_PPT_Data Types.pptx
Python_Unit-1_PPT_Data Types.pptxPython_Unit-1_PPT_Data Types.pptx
Python_Unit-1_PPT_Data Types.pptx
 
Although people may be very accustomed to reading and understanding .docx
Although people may be very accustomed to reading and understanding .docxAlthough people may be very accustomed to reading and understanding .docx
Although people may be very accustomed to reading and understanding .docx
 
Notes5
Notes5Notes5
Notes5
 
Functional programming ii
Functional programming iiFunctional programming ii
Functional programming ii
 
pyton Notes6
 pyton Notes6 pyton Notes6
pyton Notes6
 
Python-review1.ppt
Python-review1.pptPython-review1.ppt
Python-review1.ppt
 
Introduction To Programming with Python-4
Introduction To Programming with Python-4Introduction To Programming with Python-4
Introduction To Programming with Python-4
 
Python-review1.ppt
Python-review1.pptPython-review1.ppt
Python-review1.ppt
 
Python advance
Python advancePython advance
Python advance
 
Python-review1.pdf
Python-review1.pdfPython-review1.pdf
Python-review1.pdf
 
You must implement the following functions- Name the functions exactly.docx
You must implement the following functions- Name the functions exactly.docxYou must implement the following functions- Name the functions exactly.docx
You must implement the following functions- Name the functions exactly.docx
 
PYTHON -Chapter 2 - Functions, Exception, Modules and Files -MAULIK BOR...
PYTHON -Chapter 2 - Functions,   Exception, Modules  and    Files -MAULIK BOR...PYTHON -Chapter 2 - Functions,   Exception, Modules  and    Files -MAULIK BOR...
PYTHON -Chapter 2 - Functions, Exception, Modules and Files -MAULIK BOR...
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.com
 
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docx
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docxAssg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docx
Assg 07 Templates and Operator OverloadingCOSC 2336 Sprin.docx
 
Lewis jssap3 e_labman02
Lewis jssap3 e_labman02Lewis jssap3 e_labman02
Lewis jssap3 e_labman02
 
I need help with this code working Create another project and add yo.pdf
I need help with this code working Create another project and add yo.pdfI need help with this code working Create another project and add yo.pdf
I need help with this code working Create another project and add yo.pdf
 
Lesson 4A - Inverses of Functions.ppt
Lesson 4A - Inverses of Functions.pptLesson 4A - Inverses of Functions.ppt
Lesson 4A - Inverses of Functions.ppt
 
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docx
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docxISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docx
ISTA 130 Lab 21 Turtle ReviewHere are all of the turt.docx
 

More from Học Huỳnh Bá

BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤT
BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤTBÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤT
BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤTHọc Huỳnh Bá
 
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...Học Huỳnh Bá
 
Tell about a girl boy that you interested in
Tell about a girl boy that you interested inTell about a girl boy that you interested in
Tell about a girl boy that you interested inHọc Huỳnh Bá
 
Thư xin đi xe đón nhân viên shuttle transport service proposal letter (chine...
Thư xin đi xe đón nhân viên shuttle transport service proposal  letter (chine...Thư xin đi xe đón nhân viên shuttle transport service proposal  letter (chine...
Thư xin đi xe đón nhân viên shuttle transport service proposal letter (chine...Học Huỳnh Bá
 
Từ vựng chuyên ngành sản xuất giày da (tiếng trung việt) 鞋类常见词汇(汉语 - 越南语)
Từ vựng chuyên ngành sản xuất giày da (tiếng trung   việt) 鞋类常见词汇(汉语 - 越南语)Từ vựng chuyên ngành sản xuất giày da (tiếng trung   việt) 鞋类常见词汇(汉语 - 越南语)
Từ vựng chuyên ngành sản xuất giày da (tiếng trung việt) 鞋类常见词汇(汉语 - 越南语)Học Huỳnh Bá
 
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...Học Huỳnh Bá
 
Chinese email 高职高专院校英语能力测试a b级
Chinese email  高职高专院校英语能力测试a b级Chinese email  高职高专院校英语能力测试a b级
Chinese email 高职高专院校英语能力测试a b级Học Huỳnh Bá
 
English chinese business languages bec中级写作电子讲义
English   chinese business languages bec中级写作电子讲义English   chinese business languages bec中级写作电子讲义
English chinese business languages bec中级写作电子讲义Học Huỳnh Bá
 
Chinese english writing skill - 商务写作教程
Chinese english writing skill  - 商务写作教程Chinese english writing skill  - 商务写作教程
Chinese english writing skill - 商务写作教程Học Huỳnh Bá
 
Giấy báo thay đổi hộ khẩu, nhân khẩu
Giấy báo thay đổi hộ khẩu, nhân khẩuGiấy báo thay đổi hộ khẩu, nhân khẩu
Giấy báo thay đổi hộ khẩu, nhân khẩuHọc Huỳnh Bá
 
祈福英语实验学校入学申请表 Clifford school application form
祈福英语实验学校入学申请表 Clifford school application form祈福英语实验学校入学申请表 Clifford school application form
祈福英语实验学校入学申请表 Clifford school application formHọc Huỳnh Bá
 
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...Học Huỳnh Bá
 
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trường
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trườngGiáo án nghiệp vụ đàm thoại tiếng anh trong nhà trường
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trườngHọc Huỳnh Bá
 
Giáo trình ms power point 2003
Giáo trình ms power point 2003Giáo trình ms power point 2003
Giáo trình ms power point 2003Học Huỳnh Bá
 
Giáo trình microsoft office excel 2003
Giáo trình microsoft office excel 2003Giáo trình microsoft office excel 2003
Giáo trình microsoft office excel 2003Học Huỳnh Bá
 
Giáo án dạy tiếng anh văn phòng
Giáo án dạy tiếng anh văn phòngGiáo án dạy tiếng anh văn phòng
Giáo án dạy tiếng anh văn phòngHọc Huỳnh Bá
 
Hợp đồng giảng dạy (mẫu)
Hợp đồng giảng dạy (mẫu)Hợp đồng giảng dạy (mẫu)
Hợp đồng giảng dạy (mẫu)Học Huỳnh Bá
 
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữ
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữBảng tham chiếu quy đổi một số chứng chỉ ngoại ngữ
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữHọc Huỳnh Bá
 
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...Học Huỳnh Bá
 

More from Học Huỳnh Bá (20)

BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤT
BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤTBÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤT
BÀI GIẢNG NGỮ PHÁP TIẾNG ANH NGÀNH GIA CÔNG SẢN XUẤT
 
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...
Civil aviation english chinese-vietnamese vocabulary (popular language) - từ ...
 
Tell about a girl boy that you interested in
Tell about a girl boy that you interested inTell about a girl boy that you interested in
Tell about a girl boy that you interested in
 
Thư xin đi xe đón nhân viên shuttle transport service proposal letter (chine...
Thư xin đi xe đón nhân viên shuttle transport service proposal  letter (chine...Thư xin đi xe đón nhân viên shuttle transport service proposal  letter (chine...
Thư xin đi xe đón nhân viên shuttle transport service proposal letter (chine...
 
Từ vựng chuyên ngành sản xuất giày da (tiếng trung việt) 鞋类常见词汇(汉语 - 越南语)
Từ vựng chuyên ngành sản xuất giày da (tiếng trung   việt) 鞋类常见词汇(汉语 - 越南语)Từ vựng chuyên ngành sản xuất giày da (tiếng trung   việt) 鞋类常见词汇(汉语 - 越南语)
Từ vựng chuyên ngành sản xuất giày da (tiếng trung việt) 鞋类常见词汇(汉语 - 越南语)
 
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...
Common shoe and footwear vocabulary (english chinese-vietnamese)鞋类常见词汇(英语、汉语、...
 
Chinese email 高职高专院校英语能力测试a b级
Chinese email  高职高专院校英语能力测试a b级Chinese email  高职高专院校英语能力测试a b级
Chinese email 高职高专院校英语能力测试a b级
 
English chinese business languages bec中级写作电子讲义
English   chinese business languages bec中级写作电子讲义English   chinese business languages bec中级写作电子讲义
English chinese business languages bec中级写作电子讲义
 
Chinese english writing skill - 商务写作教程
Chinese english writing skill  - 商务写作教程Chinese english writing skill  - 商务写作教程
Chinese english writing skill - 商务写作教程
 
Giấy báo thay đổi hộ khẩu, nhân khẩu
Giấy báo thay đổi hộ khẩu, nhân khẩuGiấy báo thay đổi hộ khẩu, nhân khẩu
Giấy báo thay đổi hộ khẩu, nhân khẩu
 
祈福英语实验学校入学申请表 Clifford school application form
祈福英语实验学校入学申请表 Clifford school application form祈福英语实验学校入学申请表 Clifford school application form
祈福英语实验学校入学申请表 Clifford school application form
 
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...
LIST OF CHINESE & VIETNAMESE COLOR NAMES 表示颜色的英语&越南语词汇 DANH MỤC TỪ VỰNG VỀ MÀ...
 
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trường
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trườngGiáo án nghiệp vụ đàm thoại tiếng anh trong nhà trường
Giáo án nghiệp vụ đàm thoại tiếng anh trong nhà trường
 
Giáo trình ms power point 2003
Giáo trình ms power point 2003Giáo trình ms power point 2003
Giáo trình ms power point 2003
 
Giáo trình microsoft office excel 2003
Giáo trình microsoft office excel 2003Giáo trình microsoft office excel 2003
Giáo trình microsoft office excel 2003
 
Giáo án dạy tiếng anh văn phòng
Giáo án dạy tiếng anh văn phòngGiáo án dạy tiếng anh văn phòng
Giáo án dạy tiếng anh văn phòng
 
Hợp đồng giảng dạy (mẫu)
Hợp đồng giảng dạy (mẫu)Hợp đồng giảng dạy (mẫu)
Hợp đồng giảng dạy (mẫu)
 
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữ
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữBảng tham chiếu quy đổi một số chứng chỉ ngoại ngữ
Bảng tham chiếu quy đổi một số chứng chỉ ngoại ngữ
 
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...
Useful vocabulary for the resume and interview 英文简历及面试有用词汇 danh mục từ vựng a...
 
Bảng chữ cái hiragana
Bảng chữ cái hiraganaBảng chữ cái hiragana
Bảng chữ cái hiragana
 

Ms access ii (class 5) iff function

  • 1. 1 MS Access: Level II (2688-01) MS Access: Advanced Functions Lesson Notes Author: Pamela Schmidt iif Function iif («expr», «truepart», «falsepart») There are three parts to the iif function divided by commas. «expr» = the test «truepart» = What MS Access should do if the test returns true. «falsepart») = What MS Access should do if the test returns false. The iif function can be used in queries, forms, reports, macros, modules. When used in a query, create a new field, then add the function. The function can be typed in or the expression builder can be accessed by right clicking on the field. Be sure to enclose field names in square brackets. isNull Function IsNull («varexpr») The isNull function examines the field to see if it is empty. It returns a value of either true or false. The isNull function can be used in combination with other functions such as the iif function. Example This example returns the person’s full name, but only shows the comma if the suffix exists. If the title is Dr., it drops the title if there is also a Suffix. It also does not put in spaces if a part of the name does not exist. FullName: IIf(IsNull([Title]),"",IIf([Title]="Dr." Or [Title]="Dr",IIf(IsNull([Suffix]),[Title] & " ",""),[Title] & " ")) & IIf(IsNull([FirstName]),"",[FirstName] & " ") & IIf(IsNull([LastName]),"",[LastName]) & IIf(IsNull([Suffix]),"",", " & [Suffix])
  • 2. MS Access: Advanced Functions 2 Left Function Left («stringexpr», «n») The Left function returns the characters starting at the left of the string. The Left function has two parts «stringexpr» = the text field to examine «n» = the numbers of characters to return starting on the left Example This example returns the first five characters of the Postal Code. FirstFive: Left([PostalCode],5) DateAdd Function =DateAdd("h", 3, [ArrivalTime]) The DateAdd function adds hours to the current time.