Я пытаюсь вставить отформатированную подпись и число в отдельные строки в конце электронной таблицы. Я обнаружил, что могу легко добавить нужные мне значения, однако не могу форматировать переменную сигнатуры. Любая помощь будет оценена.
function signNote(){
//gets and signs for current user
var email = Session.getEffectiveUser().getEmail()
var self = ContactsApp.getContact(email)
if(self){
// gets full name
var name = self.getFullName();
//gets Clinician Profile Information
var clinicianProfile = SpreadsheetApp.openById('idGoeshere')
var clinicianInfoFile = clinicianProfile.getSheetByName(name)
var license = clinicianInfoFile.getRange('D5').getValue()
var signature = clinicianInfoFile.getRange('D6').getValue()
//Fills in signature and license
var noteSign = SpreadsheetApp.getActiveSheet()
var insertSignatureLign = noteSign.insertRowAfter(noteSign.getLastRow())
var insertSignature = insertSignatureLign.getDataRange()
noteSign.appendRow(['Signature' , signature])
noteSign.appendRow(['License Number' , license])