Created
December 10, 2018 17:30
-
-
Save ndthanh/f767c3f0d9aa5528211542fd572c255b to your computer and use it in GitHub Desktop.
This file contains 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
//1. convert all formulas to values in the active sheet | |
function formulasToValuesActiveSheet() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var range = sheet.getDataRange(); | |
range.copyValuesToRange(sheet, 1, range.getLastColumn(), 1, range.getLastRow()); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment