Rich Text & View

Is there any way to display whether a Rich Text Item has data in it or not using a view ?

Just something as simple as 1 = Contains Data 0 = No Data

I am aware of @abstract and using hidden fields, but I was curious if anyone knew of a way to get this done using formula just checking to see of the field has any data in it at all. Something like If ByteCount(VariableName) > 0 then …etc

Subject: Rich Text & View

Still searching through the forums, seems like everyone agrees this cannot be done. Correct me if I am wrong.

Subject: RE: Rich Text & View

body := @Abstract([TEXTONLY];3;“”;“Body”);att := @If(@Attachments = 0; " No Att"; " " + @Text(@Attachments) + " Att");

@If(body = “”; "Null: "; "Has: ") + att;

You can try this.