Forum Discussion
jk8979356
5 years agoRegular Visitor
How do I reference a specific cell value from a 2nd table inside of a formula on a different table?
I have a table that has the following formula: = Table.AddColumn(#"Changed Type2", "Qty Forecast", each if [Quantity] <= 0 then [Quantity] else ([Quantity] / (List.Sum(#"Changed Type2"[Amount]) ...
CNENFRNL
5 years agoCommunity Champion
Hi, jk8979356 , you may use
= Table.AddColumn(#"Changed Type2", "Qty Forecast", each if [Quantity] <= 0 then [Quantity] else ([Quantity] / (List.Sum(#"Changed Type2"[Amount]) / forecase[column2]{0})))or equally
= Table.AddColumn(#"Changed Type2", "Qty Forecast", each if [Quantity] <= 0 then [Quantity] else ([Quantity] / (List.Sum(#"Changed Type2"[Amount]) / forecase{0}[column2])))- jk89793565 years agoRegular Visitor
Thanks for the help. When I add that I get the following error:
If I open it in the Advanced Editor, it doesn't show the full error:
Any ideas?