Chức năng file search trong Excel 2010.

Liên hệ QC

cocnho

Thành viên mới
Tham gia
24/12/09
Bài viết
3
Được thích
0
chào các bạn,

Nhờ giúp đỡ mình vấn đề này với. Trong Office 2003 khi click vào File mình có chức năng File Search nhưng khi chuyển sang 2010 mình ko tìm được chức năng, mà công việc của mình thì rất cần chức năng này, bạn giúp mình với.

Thanks nhiều nhiều.
 
không cần tìm đâu, làm gì có mà tìm. Xài cái khác đi, còn nhiều cách mà
 
Nhờ bác chỉ chiêu cụ thể luôn nhé.

Đây là 1 chiêu cơ bản
Vì cơ bản nên file nào đặt tên tiếng việt có dấu thì code này potay nhé

PHP:
Sub Lay_Ten_File_1()
Dim fname, r
fname = Dir(ThisWorkbook.Path & "\*.xls*")
Do While fname <> ""
    Cells(r + 1, 1) = fname
    MsgBox fname
    fname = Dir
    r = r + 1
Loop
End Sub
 
chào các bạn,

Nhờ giúp đỡ mình vấn đề này với. Trong Office 2003 khi click vào File mình có chức năng File Search nhưng khi chuyển sang 2010 mình ko tìm được chức năng, mà công việc của mình thì rất cần chức năng này, bạn giúp mình với.

Thanks nhiều nhiều.

Nếu bạn dùng Excel 2010 trên Win Vista hoặc Win7 thì vẫn có chức năng này nhưng trên Win XP thì không hỗ trợ chức năng này nữa.

Trên Win7 hoặc Win Vista:

Mở excel --> chọn thẻ File --> chọn Open -->nhập tên file cần tìm vào góc trái của hộp thoại Open rồi nhấn Search (Cái kính lúp).

Trên Win XP thì bạn tham khảo cái này xem sao nhé:

Searching for workbooks when running Excel 2010 on Windows XP

Unfortunately, if you use Windows XP, the Open dialog box in Excel 2010 doesn't have a search feature built into it. This means that to search for missing workbooks, you have to do it outside of Excel by using Windows XP's search feature.
To use the Windows XP Search feature to find a workbook, follow these steps:

  • Click the Start button on the Windows XP taskbar and then click Search in the right column of the Start menu.
    Windows opens a Search Results dialog box.
  • Click the Documents link in the left panel of the Search Results dialog box.
  • Click the All or Part of the Document Name text box and then type the filename or the part of the name that you're sure of.
    You can type an asterisk (*) for multiple missing characters and a question mark (?) for single missing characters that you can't supply in the workbook filename to help narrow your search.
  • Click the Search button to have Windows XP begin searching for the workbook file.
    Windows displays all the workbook files that match your search criteria in the list box on the right side of the Search Results dialog box.
  • When you locate the workbook file you want to open in Excel, double-click the filename
 
Lần chỉnh sửa cuối:
Web KT
Back
Top Bottom