Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello everyone.
I'm trying to put together a composite key between two fields from the query editor. But it returns error, and I am using the correct syntax.
For example, I have two fields "date" and "market".
Formula: [Fecha] & " " & [Market]
Expression: = Table.AddColumn(#"Columnas quitadas1", "Key", each [Fecha] & " " & [Market])
Expression.Error: The & operator can not be applied to the Date and Text types.
Details:
Operator=&
Left=1/4/2018
Right=
How can I join two fields of different types for the composite key?
Thanks!
Solved! Go to Solution.
Hi @gabrielvigo,
Try it like this:
Table.AddColumn(#"Changed Type", "key", each [Market] & " " & Text.From([Fecha]))
Best Regards,
Dale
Hi @gabrielvigo,
Try it like this:
Table.AddColumn(#"Changed Type", "key", each [Market] & " " & Text.From([Fecha]))
Best Regards,
Dale
User | Count |
---|---|
84 | |
78 | |
70 | |
47 | |
41 |
User | Count |
---|---|
108 | |
53 | |
50 | |
40 | |
40 |