My report has a text box called txtFedAmount. Here I am trying to get the total amount of money for federal revenue.
I am trying to add the federal amount of revenue portion in txtFedAmount
But I keep getting #Name? What am I doing wrong?
Code:
FieldName DataType Description RevDescr text Federal / Local etc Budget Currency dollar amount
Code:
=IIf(([RevDescr]) Like “Federal”,Sum([Budget]),"")
Comment