This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Mengubah link Google Drive menjadi direct link (uc?id=...) | |
* Bisa memproses link tipe: | |
* - https://drive.google.com/file/d/ID/view | |
* - https://drive.google.com/open?id=ID | |
* | |
* Otomatis mendukung array (range) dan mengabaikan sel kosong. | |
* Contoh penggunaan: | |
* =DriveDirectLink(I2:I) | |
* =DriveDirectLink(I2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Mengubah tanggal format Indonesia (misal: "16 Oktober 2025") | |
* menjadi format US (misal: "October 16th, 2025") | |
* | |
* Cara pakai: | |
* =IDTOUS(A1) | |
* atau untuk banyak baris: | |
* =IDTOUS(A1:A) | |
*/ | |
function IDTOUS(inputRange) { |