Hi,
I'm trying to change the following Access query field
to a field in a SQl View. So far, I have the following
but am getting an error by the ' and am not sure if I have the converting down correctly. [feetype] is a char field and [feeTotal] is a money.
thanks so much for your help.
Sydney
I'm trying to change the following Access query field
Code:
Assessed: Sum(IIf([FeeType]="A",[FeeTotal],0))
Code:
sum(case Convert(money,[feeType]) when 'A' Then [FeeTotal] Else '0') End As Assessed
but am getting an error by the ' and am not sure if I have the converting down correctly. [feetype] is a char field and [feeTotal] is a money.
thanks so much for your help.
Sydney