CInt Errors

How do you debug this?
[font=Arial][size=2]Variable uses an Automation type not supported in VBScript: ‘CInt’[/size][/font] [font=Arial][size=2]/portal_docs/zbase/display.asp[/size][/font][font=Arial][size=2], line 78[/size][/font]

That line would be

<img src=“images/<% CInt(”“& intRating &”“)%>.gif”> <% = rsDisplay(“FaqTotalRatings”) %> Votes

It’s a little rating thing I came up with to show the right image to reflect the rating. intRating is a rating, but it’s based on rating / # of people who voted, and I need it to be rounded to an integer, so I used CInt, but apparently I’ve used it wrong.

Use Round(intRating) instead

Ahh, Round does work thanks.