Complete the code to apply bold formatting to cell A1 in Google Sheets using Apps Script.
SpreadsheetApp.getActiveSpreadsheet().getActiveSheet().getRange('A1').setFontWeight([1]);
To make text bold in Google Sheets using Apps Script, use setFontWeight("bold").
Complete the formula to format the number in cell B2 as currency in Google Sheets.
=TEXT(B2, [1])The format string "$#,##0.00" formats numbers as currency with dollar sign and two decimals.
Fix the error in the formula to display the date in cell C3 as "Month Day, Year" format.
=TEXT(C3, [1])The format string "MMMM DD, YYYY" shows the full month name, day, and four-digit year.
Fill the blank to create a conditional formatting rule that colors cells red if their value is less than 50.
Format > Conditional formatting > Format cells if [1] 50
To color cells red if less than 50, choose the condition "Less than" and enter 50.
Fill both blanks to create a formula that formats the number in D4 as a percentage with one decimal place.
=TEXT([1], [2])
The formula =TEXT(D4, "0.0%") formats the number in D4 as a percentage with one decimal place.