在电源查询中合并日期文本

merge date text in power query

i have sheet including a start date & sf id and I need to combine them in one column as a reference but when I try to do this I found an error as shown in the P.S, So can I solve this error

尝试使用

= Text.From([Date]) & Text.From([Person ID])

或者

= Text.From([Date]) & " " & Text.From([Person ID])

如果字段不是文本,则不能使用 & 组合它,除非用 Text.From()

将其包裹起来