Reputation: 167
I have an ISNULL statement that I'm not sure how it would process.
ISNULL(a, ISNULL(a, m))
Is the inner ISNULL statement redundant and can I replace with the following?
ISNULL(a, m)
Thanks in advance, Craig
Upvotes: 1
Views: 83