Skip to main content

[MicrosoftExcel]: Thu thập kinh nghiệm học từ người dùng cuối, blog, website...

[Kiểm tra địa chỉ e-mail hợp lệ]
Tiêu chí kiểm tra địa chỉ e-mail hợp lệ
- Phải có chứa @
- Phải có chứa dấu .

Cell A1 chứa địa chỉ e-mail cần được kiểm tra

Cell A2: =AND(FIND(“.”,A1),FIND(“@”,A1))

Nếu nội dung cell A1 không thỏa cả 2 tiêu chí trên thì cell A2 sẽ có giá trị FALSE


[Trích nội dung cell]
Học được từ: http://www.mrexcel.com/forum/excel-questions/545041-copy-remove-text-before-after-specific-character.html

Cell A1: abc@gmail.com; xyz@yahoo.com
Cell A2: abc@gmail.com; xyz@yahoo.com

B1: Lấy nội dung từ phía sau dấu chấm phẩy đến cuối cell:  =RIGHT(A1,LEN(A1)-FIND("; ",A1))
B2: Lấy nội dung từ dấu chấm phẩy trở về đầu cell: =LEFT(A2,FIND(";",A2)-1)


[Copy nội dung một cell cho đến dòng cuối cùng trong một cột]
- Chọn cell cần copy
- Đặt con trỏ ở gốc phải bên dưới cell đã chọn, khi con trỏ có hình chữ thập + thì nhấn đúp

Popular posts from this blog

Docker: Commonly Used Commands

Repeat to remember Remember to repeat

Powershell: Test-NetConnection

PS C:\Users\tuyen> get-help Test-NetConnection NAME     Test-NetConnection SYNTAX     Test-NetConnection [[-ComputerName] <string>] [-TraceRoute] [-Hops <int>] [-InformationLevel {Quiet |     Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] [-CommonTCPPort] {HTTP | RDP | SMB | WINRM}     [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -Port <int> [-InformationLevel {Quiet | Detailed}]     [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -DiagnoseRouting [-ConstrainSourceAddress <string>]     [-ConstrainInterface <uint32>] [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>] ALIASES     TNC REMARKS     Get-Help cannot find the Help files fo...

Windows 10: Install SuSE Linux Enterprise - SLES

With Microsoft-Windows-Subsystem-Linux feature enabled, we can install Linux distributions on Windows 10.