How to populate a new column with a conditional statment
I would like to populate column = = :Cost Set_2 with the same data as from column == :Cost Set Except if column == :Mon_Yr == 03/2022 AND :Cost Set=="ACTUAL_PAID" THEN :Cost Set_2 == "ACWP" I have a formula script that but I could not get it to work: If( Char( Format( :Mon_Yr, "m/y" ) == "03/2022" ) & (:Cost Set == "ACTUAL_PAID")),
"ACWP",
Also instead of using "03/2022" I'd like to set this u...