Used the function
=IF(A1="TRUE",TODAY(),"Date not verified")
Tried to get the date published in second column if the check box is TRUE or checked. But seems that my logic is not working
Used the function
=IF(A1="TRUE",TODAY(),"Date not verified")
Tried to get the date published in second column if the check box is TRUE or checked. But seems that my logic is not working
try:
=IF(A1=TRUE, TODAY(), "Date not verified")
you may also want to check out the 2nd formula from https://stackoverflow.com/a/66201717/5632629