How to Add Remarks to Report Design.

Hi there, 

I'd like to organize some notes at the end of the borehole logs. 

Currently I write the notes in the "Notes" section of the Borehole Input Section but they do not format neatly with each note on a new line. 

When I add some input information in the Remark Input tab, they do not show up on the template. 

I think I first need to add the remarks to the template design. How do I do this? 

Thanks so much

Ismena 

Parents
  • If you merely want multiple notes entered into a single field to start on a new line you can simply embed a gINT carriage return code in the text.  This should work regardless of whether the field is a text field or a memo field.  For example, the text

    This is a note<<cr>>this is a second note

    will print as

    This is a note

    this is a second note

    The note would still wrap based on the length of each line and the settings in the entity that prints it but the formatting code forces a new line to start. This works with other formatting codes as well such as bold <<b>> underline <<u>> etc. I am not a proponent of including gINT formatting codes in data as it makes the data less portable but this is one way to solve your stated concern.  

    If your note is assembled from several different fields, the carriage returns can be included in the expression used to assemble the note. for example:

    The expression <<ListBuildSepTrim("<<cr>>",<<table1.field1>>,<<table1.field2>>,<<table1.field3>>)>>

    Will assemble the notes in field1, field2, and field3 into a single note with each note beginning on a new line.

  • HI szang, 

    I am not sure what a gint carriage return code is but I did try using formatting in the remarks section - hence the bolded in my example. The <<N>> entry did not create a new line so I don't think this solves my original concern. 

  • Ismena, the code for carriage return is <<cr>>, that will create a new line (see Szang's example)

Reply Children
No Data