I have multiple fields in a file such as product description, product type, price, effective price date, end price date, and currency.
However, I need to pull only product type, price and effective price date ONLY if the effective date matches today's date. I used the following formulas below but keep getting
'Parse Error at char(24): Malformed If Statement" error
Output Field: Type: Expression
ProductType String IF([Start Date]=[DateTimeNow(%Y%m%d)],[Product Value],"")
ProductPrice String IF([Start Date]=[DateTimeNow(%Y%m%d)],[Price],"")
ProductDate Date IF([Start Date]=[DateTimeNow(%Y%m%d)],[Start Date],"")