G
Guest
I have created a report to track financial information which includes both bills that have been paid and bills that have been promised to be paid. I need to separate the two and then be able to add them back together. I am trying to use an if then else that looks like this...
Dim curPaidTotal as Currency
Dim curPromisedTotal as Currency
If chkDev(Tuition) = yes then
Dev(Tuition) + curPaidTotal
else
Dev(Tuition) + curPromisedTotal
end
if chkDev(Books) = yes then
Dev(Books) + curPaidTotal
else
Dev(Books) + curPromisedTotal
end
I have the code as an on open event
it's not working at all
can anyone help me
I've been back and forth about if I should just do two separate forms and make them enter the information twice. And then have a separate report but I really want to make it as easy as possible for them.
Dim curPaidTotal as Currency
Dim curPromisedTotal as Currency
If chkDev(Tuition) = yes then
Dev(Tuition) + curPaidTotal
else
Dev(Tuition) + curPromisedTotal
end
if chkDev(Books) = yes then
Dev(Books) + curPaidTotal
else
Dev(Books) + curPromisedTotal
end
I have the code as an on open event
it's not working at all
can anyone help me
I've been back and forth about if I should just do two separate forms and make them enter the information twice. And then have a separate report but I really want to make it as easy as possible for them.