I have an access table that I'm trying to append to a SharePoint list. The SP list has two calculated columns:
CurrentMonth: IIf(Str([Today])=Str([Due Date]),1,0)
PastDue:IIf([Today]>[Due Date],1,0)
What is the correct expression for my Access calculated columns?
in the expression to calculate the values for Calculated field, you can only use the fields on the same table and hard coded values,
values such as Date() are not permitted.
CurrentMonth: IIf(Date()=[Due Date],1,0)
PastDue:IIf(Date() >[Due Date],1,0)