Forum Discussion
Question on Replace Function
- 2 years ago
Anonymous Put comma inside a double quotation and use & like below:
Date.ToText([Invoice Date]) & " , " & [Comments]Hope this answered your question. If, please mark it as a solution!!
Thanks. Is it possible to do the following
1. concatenate Division with Invoice amount (Relationship 01)
1. concatenate Invoice Date with comments (Relationship 02)
Anonymous Yes it is possible.
1. Division with invoice amount - [Division] & Number.ToText([Invoice amount])
2. Invoice Date with comments - Date.ToText([Invoice Date]) & [Comments]
Hope this answered you question. If, please mark it as a solution!!
- Anonymous2 years agoNot applicable
this is great...how can i add comma to distinguish between the 2 data
- shafiz_p2 years agoSuper User
Anonymous Put comma inside a double quotation and use & like below:
Date.ToText([Invoice Date]) & " , " & [Comments]Hope this answered your question. If, please mark it as a solution!!