Excel tự động tính toán lại chỉ cho sheet đang mở

Issue: khi file excel nặng, có nhiều function hoặc lượng data lớn, mỗi khi thêm/chỉnh sửa data, excel đều tính toán lại tất cả các file excel đang mở. Việc này có thể mất nhiều thời gian, khá ức chế. Excel thường xuyên hiện: “Calculating: (xx processors): x%)” Giải pháp:  + Vào menu => formulas […]

Sử dụng indirect trong excel

Sử dụng indirect kết hợp với vlookup, index – match để tìm kiếm data trong các sheet khác nhau tương ứng với dữ liệu người dùng nhập vào VLOOKUP(A2,INDIRECT(G2&”!A:V”),15,0) với G2: là giá trị tham chiếu của ô G2 sẽ được sử dụng để tìm sheet name.  Ref: https://www.excelforum.com/excel-formulas-and-functions/908023-vlookup-with-sheet-name-as-cell-reference.html

Callback url là gì? Shopee webhook và API

Shopee API order detail

I. Callback URL là gì: Khi sử dụng Shopee api hoặc các api khác, các api đều yêu cầu bạn điền thông số callback url. Vậy callback url là gì?Hãy theo dõi ví dụ sau: POST /api.example.com/foo?callbackURL=http://my.server.com/bar Trong ví dụ trên, chúng ta gửi 1 request đến api.example.com/foo và yêu cầu sau khi hoàn thành […]

Thêm data vào woocommerce webhook

Issue: Cần thêm data sản phẩm vào json output của Woocommerce Rest API để gửi thông tin đơn hàng cho CRM xử lý. Tuy nhiên Rest API trả về json output với sản phẩm chưa có một số thông tin như: hình ảnh, giá normal price… { “id”: 79, “name”: “Kaju Katli”, “sku”: “SW-282”, “product_id”: […]

Đổi port Remote Desktop

Mặc định Remote Desktop sẽ connect vào cổng 3389 (default port). i Để có thể thay đổi cổng này, chúng ta cần sửa như sau: Start the registry editor. (Type regedit in the Search box.) Navigate to the following registry subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp Find PortNumber Click Edit > Modify, and then click Decimal. Type the new port number, and […]

Ngăn excel tự động format số thành ngày tháng

Issue:  Khi xử lý số liệu trong Excel, khi chúng ta đang để số trong cel, Excel có thể tự động chuyển thành định dạng ngày tháng, gây khó khăn cho việc xử lý dữ liệu.  Solution:  Có 3 cách để ngăn việc này:  + C1: chọn ô chứa data => chuột phải => format […]

Cronjob trên Centos: thiết lập, cài đặt, chỉnh sửa

Cron job: thiết lập, cài đặt cron trên centos

Hướng dẫn cài đặt, thiết lập, xem, chỉnh sửa cron job trên Centos giúp tự động hóa công việc của server admin.  1. Update hệ thống:  sudo yum update Nên update hệ thống server trước khi cài đặt cron 2. Kiểm tra phiên bản cron đang cài đặt: sudo rpm -q cronie 3. Cài cron:  […]

Hiển thị data từ Google sheet lên WordPress bằng Sheet API

Issue:  Nhúng iframe Google Sheet vào WordPress có độ trễ về hiển thị dữ liệu & khó tương tác đối với người dùng.  Solution:  Hiển thị data từ Google sheet lên WordPress thông qua Sheet API để tăng trải nghiệm người dùng.  Các bước thực hiện:  1. Chuẩn bị Google sheet data: + chuẩn bị […]

Fix Invalid object type for field “brand” woocommerce

Fix Invalid object type for field “brand”

Issue:  Google search console shows the warning: Invalid object type for field “brand”. Solution: Most of websites’s structured data show the schema this way:  “brand”: {         “@type”: “Thing”,         “name”: “MyBrand” }, but Google wants us to show like this: “brand”: {         “@type”: “Brand”, […]