Limiting Text Characters

Hi,

I have a text field  which describes a product.This field is also displayed in web.But i want only 100 characters of it to be displayed in web.If extra characters r their juz show 3 dots.

Wut should i do?

Subject: Limiting Text Characters

Sasi,

@if(@length(FieldName)>100;@left(FieldName;100)+“…”;FieldName)

HTH

Mike

Subject: RE: Limiting Text Characters

Thanx Mike,

It really was gud enough

regards,

sasi