Wyatt_Porter
Nov 12, 2021Copper Contributor
Receiving #type! back on calculation
So I am a little stuck and would like to know if anyone can help me with the below Expression:
IIf([Asset_Type]="1000",[Beginning Year]," ")+15
Ok, so for the above Expression I am receiving back "#Type!" for any [Asset_Type] not equal to "1000". I am trying to add 15 to the [Beginning Year] if [Asset_Type] = 1000, and " " [Asset_Type] is not = to 1000. Now I know that the +15 at the end of the statement is making the Expression go crazy, but if I make try to use the expression below Access goes crazy.
IIf([Asset_Type]="1000",[Beginning Year]+15," ")
Now I am used to excel, and this above formula makes sense to me, but I can tell access takes a different approach. Would anyone be able to help me with this?