I've seen several threads on using =IIF in a report field. I am wondering if VBA would be a better way to do the following?
report with a field evaluating a 2nd field. In my control source for the 1st field:
=IIf([CFSN] Like "EG1*","1 GB",IIf([CFSN] Like "FN1*","2 GB",IIf([CFSN] Like "RQ1*","4 GB")))
This has now expanded to acouple of more options and IF no eveluation is true then show the actual data in the 2nd field.
Would a Case select module be better for this?
Thanks
Kevin
report with a field evaluating a 2nd field. In my control source for the 1st field:
=IIf([CFSN] Like "EG1*","1 GB",IIf([CFSN] Like "FN1*","2 GB",IIf([CFSN] Like "RQ1*","4 GB")))
This has now expanded to acouple of more options and IF no eveluation is true then show the actual data in the 2nd field.
Would a Case select module be better for this?
Thanks
Kevin