Complete the formula to allow only positive numbers in cell A1.
=IF([1], TRUE, FALSE)The formula A1>0 checks if the value in cell A1 is greater than zero, allowing only positive numbers.
Complete the formula to allow only text entries in cell B2.
=ISTEXT([1])The ISTEXT function checks if the content of cell B2 is text.
Fix the error in the formula to allow only dates after January 1, 2023 in cell C3.
=C3>[1]The DATE(2023,1,1) function correctly represents the date January 1, 2023 in Google Sheets formulas.
Fill both blanks to allow only whole numbers between 1 and 100 in cell D4.
=AND(ISNUMBER(D4), D4 [1] 1, D4 [2] 100)
The formula checks that D4 is a number, greater than or equal to 1, and less than or equal to 100.
Fill all three blanks to allow only text in cell E5 that starts with 'A' and has length 3.
=AND(ISTEXT(E5), LEFT(E5, [1]) = [2], LEN(E5) [3] 3)
The formula checks that E5 is text, starts with the letter 'A' (first character), and has length exactly 3.