Need help in appending multiple values in excel cell - ansible

Hi All,

We are registering output of some commands and need to store output in excel format.The challenge is to append multiple values in excel cell.Could someone help here?

Regards
Kumar

Here is an example

http://www.uni-koeln.de/~pbogusze/posts/Ansible_export_facts_to_simple_csv_file.html

concatenate within the , ?

{{ var1 ~ var2}}, {{var3}, {{var4}} ...

though i would just do it all in one go:

{{ ','|join([ var1 ~var2, var3, var4 ...]) }}