我有一张如下表所示的表格,并尝试创建Custom Colom
以下条件:
if [Date] < #date(2024, 7, 15) then consider all the Amount for Code (A1,A2,A3, and A4)
if [Date] >= #date(2024, 7, 15) then consider the Amount only C1 and D1
Code Date Amount Expected Amount
A1 15/06/2024 1 1
B1 15/06/2024 2 2
C1 15/06/2024 3 3
D1 15/06/2024 4 4
A1 15/07/2024 5 0
B1 15/07/2024 6 0
C1 15/07/2024 7 7
D1 15/08/2024 8 8