I am trying to create a custom view for a sharepoint list, similar to the one explained here:
http://msdn.microsoft.com/en-us/library/ms916812.aspx
I have a column which is a number field with values ranging from 0 to 100.
I need to create a view style which will display an image in the column based on the column value, instead of displaying the value.
If the value is in between 0 to 25, i need to display an image 25.gif If the value is in between 25 to 50, i need to display an image 50.gif ..... and so on.
The calculation involved here is the CEILING function, CEILNG(NumberColumn,25)
The problem is, I need to specify this in CAML, in the VWSTYLES.XML
How can I specify the Ceilnig function in CAML?