Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excel を使用して、次のように条件付きの日付式を作成したいと思います。
日付が 2013 年 1 月 18 日以降の場合、このセルに $220.00 を入力します。
これは可能ですか?
ありがとう
セルA1が日付を保持している場合は、別のセルでこの数式を試してください
=IF(A1>=DATE(2013,1,18),220,"")
数式セルを通貨としてフォーマットします
これを試して:
=IF(A1>DATEVALUE("17/1/2012"),220)