Create a structured reference in cell H4 that will multiply the Streaming_Revenues
amount by the value in cell B2 if the Rating is PG-13. Otherwise, it will display 0
我怎么能这样做?我试过了
=if(B2="PG-13", G2*B2, 0)
答案 0 :(得分:1)
试试这个公式
=IF(Table1[rating]="PG-13",Table1[Streaming_Revenues]*$B$2,0)
答案 1 :(得分:0)
我知道这已经过时了,但是如果有人遇到这个问题,那么正确答案就是:
=IF([Rating]="PG-13",[Streaming_Revenues]*$B$2,0)
答案 2 :(得分:-1)
我同意Kim Jaca,我认为你希望它像这样引用B4:
=if(B4="PG-13",G4*$B$2,0)
使用F4键锁定您的B2单元格。祝你好运。
答案 3 :(得分:-1)
=IF([Rating]="PG-13", [Streaming_Revenues]*$B$2,0)