Hello,
I am new to this site and this is my first post, of what I am expecting to be many - as I usually have many questions. But, my questions is involving a repeating table in InfoPath that has entries that I would like to submit to an already created SharePoint List. With this, I would like to have all entries submited to a single cell on the list, but to have each entry on a new line. I am able to list out all the entries from the repeating table to a separate field in info path, but I am having problems with creating each entry on a new line. I try using the "<li>","</li>" pieces, and also tried "/n" - but each time, the output just writes out the text. My function that I have currently is this :
eval(eval(notesgroup, 'concat("~ ", my:notesdate, ": ", my:notes)'), "..")
which gives me this output:
~ 2009-03-17: test 1~ 2009-03-17: test 2~ 2009-03-17: test 3
and am thinking that I want something like this:
eval(eval(notesgroup, 'concat("<li>", my:notesdate, ": ", my:notes, "</li>")'), "..")
but that gives me this output:
<li> 2009-03-17: test 1 </li><li> 2009-03-17: test 2</li><li> 2009-03-17: test 3</li>
and I want the output to look something like this in a single cell (so I can then send that field to SharePoint
2009-03-17: test 1
2009-03-17: test 2
2009-03-17: test 3
Let me know if I am going about this the wrong way or if I am missing a step in this.
Thanks,
FD