Hy everyone.
I have a report who gives me some records in this format
|ID |NAME
|1 |Word
|2 |Excel
|3 |Powerpoint
Sometimes i can receive something like that
|ID |NAME
|1 |Word
|2 |Excel
Now i have create a formula field that show me if the user is able to use (For example) the word Application.
Formula field:
WhileReadingRecords;
If ({Principale.NAME} = 'Word') Then
Chr(254)
Else
Chr(168)
<em>-> I use wingdings font to show Unselected/Selected CheckBox</em>
But i receive 4 details rows ... I want to loop through all records and at the end, print this formula. Maybe i need to work into footer section of the report?
Thanks everyone.
Raffaeu