Forum Discussion
How to concatinate text with some dynamic value
- 8 years ago
You can also choose for a Power Query solution (Query Editor).
If you only have a single value, you can also define a Parameter.
Example query code with both alternatives:
let Source = #table(type table[Environment = text],{{"Env 01"},{"Env 02"}}), #"Added Custom" = Table.AddColumn(Source, "Environnment and Server from Table B", each [Environment] & " " & Table.FirstValue(#"Table B")), #"Added Custom1" = Table.AddColumn(#"Added Custom", "Environmemnt and Server from parameter", each [Environment] & " " & Server) in #"Added Custom1"Screenshot for parameter definition:
Hi,
Show a sample dataset and the expected result.
Hi,
There is no relationship between those two tables.
Take one table having all the data, and other table having a single constant value.
I want to display the table having all the data, along with the concatination of that constant field in one of the custom columns, (off course for every record).
- MarcelBeug8 years agoCommunity Champion
You can also choose for a Power Query solution (Query Editor).
If you only have a single value, you can also define a Parameter.
Example query code with both alternatives:
let Source = #table(type table[Environment = text],{{"Env 01"},{"Env 02"}}), #"Added Custom" = Table.AddColumn(Source, "Environnment and Server from Table B", each [Environment] & " " & Table.FirstValue(#"Table B")), #"Added Custom1" = Table.AddColumn(#"Added Custom", "Environmemnt and Server from parameter", each [Environment] & " " & Server) in #"Added Custom1"Screenshot for parameter definition:
- azizimranz8 years agoFrequent Visitor
Thanks a lot MarcelBeug
It works!
Here is my implementation:
let
Source = Sql.Database(SQLServer, Database),
dbo_test_table = Source{[Schema="dbo",Item="test_table"]}[Data],
#"Added Custom" = Table.AddColumn(dbo_test_table, "Environnment and Server from Table B", each Table.First(#"system_properties")[value]),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Environmemnt and Server from parameter", each Server)
in
#"Added Custom1"- MarcelBeug8 years agoCommunity Champion
It looks you implemented both alternatives instead of chosing one of the 2 (either a parameter or a table with 1 value).