I'm new to and having trouble with Formulae Syntax in Persisted Columns.
A - I need case when (CustomerAccountID IS NULL and MissCustNameMatched=0) OR errLicensingProgMissing=1 OR errLicensingSubMissing=1 then (1) else (0) end
This won't validate correctly.
B - Or can I do it somehow like this *
case
- when [MissCustName] IS true then
- when [CustomerAccountName] IS NULL then
- (1)
- else
- (0)
- end
- else
- (0)
- end*