I am a beginner and this may be a dumb question for many. In a query, I am trying to use IIF function to apply few conditions which when true should return a number. However, I have noticed that returned values are always in text and not number which necessitate the need for converting the output. As an example, the formula I am using is as under:
FSScore: IIf(IsNull([DevType]),0,IIf([DevType]="New" And [Loc Type]="SU FS" And [Type]="Supermarket",10,""
I am asking that 10 should be returned when all the conditions are met.
Regards
FSScore: IIf(IsNull([DevType]),0,IIf([DevType]="New" And [Loc Type]="SU FS" And [Type]="Supermarket",10,""
I am asking that 10 should be returned when all the conditions are met.
Regards