Nov 15 2023 10:58 AM
Hey lovely people,
i have tried this for a couple of hours and don't seem to get the right result even from the web
i have a table in A2 i have a dropdown menu with names, i would like to automatically add today's date each time i use to b2 once i add the name in A2
i tried this but it keeps coming back with the message we all get when the formula is wrong
=IF(ISBLANK(A2), "", IFERROR(IF(OR(A2="CINCO", A2="Greenhouse", A2="Salty Autumn"), TODAY(), ""), ""))
any help welcome
cheers
Nov 15 2023 10:41 PM
SolutionIt seems like you want to automatically add today's date in cell B2 when a name is selected from the dropdown menu in cell A2. If that's the case, you can use the following formula in cell B2:
=IF(ISBLANK(A2), "", IFERROR(IF(OR(A2="CINCO", A2="Greenhouse", A2="Salty Autumn"), TODAY(), ""), ""))
This formula checks if cell A2 is not blank. If it's not blank and the name in A2 is either "CINCO," "Greenhouse," or "Salty Autumn," it returns today's date; otherwise, it returns an empty string.
The formula you provided looks correct for achieving this functionality. However, if you're still encountering issues, make sure that:
If you're still having trouble, please provide more details about the issue you're facing or any specific error messages you're receiving. The text was revised with the AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and like it!
This will help all forum participants.