I have a query that has a calculated field with multiple values.
The values are 10R, 10W, 10S, 10C, and 10M. The field may generate an answer as any one of these values or any combination of these values. For example one person may have this as the result: 10R,10S
Another may be: 10W, 10C (The field is one or multiple values separated by commas.
I am wondering is there a function that looks at just part of the string representing all of the values in that field. I found this example:Languag e: IIf([CountryRegion]="Italy", "Italian", "Some other language")
Is it possible to modify this to only look at parts of the field or to key in on a single value? Something like this:
Reading : IIf([WhichTests] = "10R","Reading" ,"")
This would look that the field WhichTests and if 10R is one of the values there, it would put "Reading" in the column, otherwise, it would be blank. Is this possible? Thanks.
The values are 10R, 10W, 10S, 10C, and 10M. The field may generate an answer as any one of these values or any combination of these values. For example one person may have this as the result: 10R,10S
Another may be: 10W, 10C (The field is one or multiple values separated by commas.
I am wondering is there a function that looks at just part of the string representing all of the values in that field. I found this example:Languag e: IIf([CountryRegion]="Italy", "Italian", "Some other language")
Is it possible to modify this to only look at parts of the field or to key in on a single value? Something like this:
Reading : IIf([WhichTests] = "10R","Reading" ,"")
This would look that the field WhichTests and if 10R is one of the values there, it would put "Reading" in the column, otherwise, it would be blank. Is this possible? Thanks.
Comment