Hello.
So here is what I have:
Convert(Varchar,Case When aud.DebitAmount Like '%-' Then '-'+replace(aud.DebitAmount,'-','') Else aud.DebitAmount End)
So this takes the aud.DebitAmount field and puts the negative sign in front of the number should one exist and otherwise makes the field a number.
Ran an "IsNumeric" test and everything comes back = 1.
But, when I use it in a subquery in the When section I get the referenced error.
(Select Max(ah.TokenString) From AccountHistory ah Where ah.MemberNumber = aud.MemberNumber AND ah.AccountNumber = Right(aud.AcctNumber,1) AND DateDiff(dd,ah.EntryDate,Cast(aud.ReportDate AS Date)) Between -5 AND 5 AND (ah.PrincipalAmount-1) = Convert(Varchar,Case When aud.DebitAmount Like '%-' Then '-'+replace(aud.DebitAmount,'-','') Else aud.DebitAmount End))*
ah.PrincipalAmount is numeric.
I slowly built the subquery and only came up with the error with the last section. Where am I going wrong?
Thank you.