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
jk8979356 , what's the name of the query where you extract the number?
jk8979356
5 years agoRegular Visitor
The query name for I extract the number is "2020forecast"
- CNENFRNL5 years agoCommunity Champion
jk8979356 , so you may use
= Table.AddColumn(#"Changed Type2", "Qty Forecast", each if [Quantity] <= 0 then [Quantity] else ([Quantity] / (List.Sum(#"Changed Type2"[Amount]) / #"2020forecast"{0}[column2])))- jk89793565 years agoRegular Visitor
That worked. You are awesome! Thank you so much for your help!