
Originally Posted by
Huddle
Take that back. I closed it and opened it again to double check it and now it's giving the errors again.
Three of the five calculations are unrelated. So it can't be just one field/control name.
Example:
GSA Contact is a combo box name GSA_Contact_Cmb whose Row Source is directed to a table.
The first calculated box is =[GSA_Contact_Cmb].[column](1) & " x" & [GSA_Contact_Cmb].[column](2)
The second calculated box is =[GSA_Contact_Cmb].[column](3)
On another Tab I have Last_Signature_Date which is manually entered.
The first calculated field is =IIf(IsNull([Last_Signature_Date])," ",DLookUp("[FSA_FY]","[Lookup_Tbl_Fiscal_Year]","[Start_Date] <= #" & [Last_Signature_Date] & "# And [End_Date] >= #" & [Last_Signature_Date] & "#"))
The second calculated box is =IIf([Status]="Closed","Inactive",IIf([FSL]<>0,IIf([FSL]=4,[Last_Signature_Date]+1096,IIf([FSL]=3,[Last_Signature_Date]+1096,IIf([FSL]=2,[Last_Signature_Date]+1827,IIf([FSL]=1,[Last_Signature_Date]+1827)))),"Need FSL"))
And the last calculated box is =IIf([Next_FSA]="Inactive"," ",IIf([Next_FSA]="Need FSL"," ",IIf(IsNull([Next_FSA])," ",DLookUp("[FSA_FY]","[Lookup_Tbl_Fiscal_Year]","[Start_Date] <= #" & [Next_FSA] & "# And [End_Date] >= #" & [Next_FSA] & "#"))))
The only commonality is they are on Tabs.
There is also a Macro for a pop up form that will not run with the Command Button but when I click outside the Tabs it pops up.