gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,347
- Office Version
- 365
- Platform
- Windows
I created a new column and contatenated these values without any problems.
= Table.AddColumn(#"Added Custom2", "Detail Comments", each "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}" & " " & "{Tariff: $" & Number.ToText([#"Tariff Cost $"]) & "}" & " " & "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}")
{Excess Cost: $500.25} {Tariff: $205.78} {Excess Cost: $500.25}
But I wanted to add a Comment column (Text) to it. Once I do this the new column is blank. can someone explain what I am doing wrong?
[Qty Comment] &"{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}" & " " & "{Tariff: $" & Number.ToText([#"Tariff Cost $"]) & "}" & " " & "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}"
The Formula does not tell me I have a syntax error so I dont understand why this does not work. it comes up null.
Thanks for the help.
= Table.AddColumn(#"Added Custom2", "Detail Comments", each "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}" & " " & "{Tariff: $" & Number.ToText([#"Tariff Cost $"]) & "}" & " " & "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}")
{Excess Cost: $500.25} {Tariff: $205.78} {Excess Cost: $500.25}
But I wanted to add a Comment column (Text) to it. Once I do this the new column is blank. can someone explain what I am doing wrong?
[Qty Comment] &"{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}" & " " & "{Tariff: $" & Number.ToText([#"Tariff Cost $"]) & "}" & " " & "{Excess Cost: $" & Number.ToText([#"Excess Material Cost $"]) & "}"
The Formula does not tell me I have a syntax error so I dont understand why this does not work. it comes up null.
Thanks for the help.