GOOGLEFINANCE( "name"、 "return52")は投資信託に使用できますが、株式には使用できません。同じ結果を得る別の方法はありますか?
セルがNUMBERとしてフォーマットされている場合:
=ROUND( ( GOOGLEFINANCE("GOOG","price") / index(GOOGLEFINANCE("GOOG","price", datevalue(today()-365) ) , 2,2) - 1 ) * 100 ,2)
代替案:
=ROUND( ( GOOGLEFINANCE("GOOG","price") / index(GOOGLEFINANCE("GOOG","price", date(year(today())-1,month(today()),day(today()))) , 2,2) - 1 ) * 100 ,2)
セルがPERCENTとしてフォーマットされている場合:
=GOOGLEFINANCE("GOOG","price") / index(GOOGLEFINANCE("GOOG","price", datevalue(today()-365) ) , 2,2) - 1
代替案:
=GOOGLEFINANCE("GOOG","price") / index(GOOGLEFINANCE("GOOG","price", date(year(today())-1,month(today()),day(today()))) , 2,2) - 1