Can't get correct Format for IF(ISBLANK) and AND (&&) for complex formula IF AND Calculation
Hi there
I'm trying to create a somewhat Complex calculated expression for 6 Separate data fields where the DATE is populated or empty.
I was able to get TWO arguments in the expression to give correct results, but run into trouble when the IF and the && come in.
I don't think I can use the OR || because it's not an OR type of expression.
It would go like this, but it has all be combined
Basically in human language first:
If my first field has no date, then "Start Checklist". If My First field is Populated and the Other 5 are blank then 'I have completed First Check". If My first and second fields have a date then "I have completed Checks 1 and 2".....and so on.
IF(ISBLANK({field A},"Start Checklist",,IF(!ISBLANK({field A})&&ISBLANK({field 2},{field 3},{field 4},{field 5},{field 6}),"I have completed First check",IF(!ISBLANK({field A},{field 2})&&ISBLANK({field 3},{field 4},{field 5},{field 6}),"I have completed check 1 and 2"....and so on.
Is this possible?
Thanks