Hello
i am hoping someone can chime in
i am purely just building this budget database for fun, but i want to figure it out dammit!
i have two columns on the same table [Cost] and [Frequency]
one is my cost the other is how often i pay.
it is a dropdown from another table that contains: Weekly, Bi-Weekly, Monthly, yearly
i am trying to build a column or query that will look at those two columns and figure out my monthly requirements
IIf([Frequency]="Yearly",[Cost]/12,IIf([Frequency]="Bi_Weekly",[Cost]*26/12,IIf([Frequency]="Weekly",[Cost]*52/12,[Cost])))
it only seems to return my false result (the cost) i can't get it to do any of the math
this statement layout works in excel, so obviously i am missing something
can anyone tell me what it is??
i am hoping someone can chime in
i am purely just building this budget database for fun, but i want to figure it out dammit!
i have two columns on the same table [Cost] and [Frequency]
one is my cost the other is how often i pay.
it is a dropdown from another table that contains: Weekly, Bi-Weekly, Monthly, yearly
i am trying to build a column or query that will look at those two columns and figure out my monthly requirements
IIf([Frequency]="Yearly",[Cost]/12,IIf([Frequency]="Bi_Weekly",[Cost]*26/12,IIf([Frequency]="Weekly",[Cost]*52/12,[Cost])))
it only seems to return my false result (the cost) i can't get it to do any of the math
this statement layout works in excel, so obviously i am missing something
can anyone tell me what it is??