Since you only have 3 values, you could try nested IIF statements as a field in the query for the report, something like:
IIF([FieldName]="L", 100, IIF([FieldName]="M",175,IIF([FieldName]="H",250,0)))
If the list of values could grow, you may want to have a seperate table containing the...